23 lines
592 B
C#
23 lines
592 B
C#
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_ProvinceRepository : RepositoryBase<Sys_Province>, ISys_ProvinceRepository
|
|
{
|
|
public Sys_ProvinceRepository(VOLContext dbContext)
|
|
: base(dbContext)
|
|
{
|
|
|
|
}
|
|
public static ISys_ProvinceRepository Instance
|
|
{
|
|
get { return AutofacContainerModule.GetService<ISys_ProvinceRepository>(); }
|
|
}
|
|
}
|
|
}
|
|
|