You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
780 B

/*
*,
*RepositoryPartialSys_QuartzLogRepository
*/
using VOL.System.IRepositories;
using VOL.Core.BaseProvider;
using VOL.Core.EFDbContext;
using VOL.Core.Extensions.AutofacManager;
using VOL.Entity.DomainModels;
namespace VOL.System.Repositories
{
public partial class Sys_QuartzLogRepository : RepositoryBase<Sys_QuartzLog> , ISys_QuartzLogRepository
{
public Sys_QuartzLogRepository(VOLContext dbContext)
: base(dbContext)
{
}
public static ISys_QuartzLogRepository Instance
{
get { return AutofacContainerModule.GetService<ISys_QuartzLogRepository>(); } }
}
}