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
787 B

/*
*,
*RepositoryPartialSys_DepartmentRepository
*/
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_DepartmentRepository : RepositoryBase<Sys_Department> , ISys_DepartmentRepository
{
public Sys_DepartmentRepository(VOLContext dbContext)
: base(dbContext)
{
}
public static ISys_DepartmentRepository Instance
{
get { return AutofacContainerModule.GetService<ISys_DepartmentRepository>(); } }
}
}