|
using WIDESEA_Core.BaseProvider;
|
using WIDESEA_Core.EFDbContext;
|
using WIDESEA_Core.Extensions.AutofacManager;
|
using WIDESEA_Entity.materielinfo;
|
using WIDESEA_Services.IRepositories;
|
|
namespace WIDESEA_Services.Repositories
|
{
|
public partial class dt_materielinfoRepository : RepositoryBase<dt_materielinfo>, Idt_materielinfoRepository
|
{
|
public dt_materielinfoRepository(VOLContext dbContext)
|
: base(dbContext)
|
{
|
|
}
|
public static Idt_materielinfoRepository Instance
|
{
|
get { return AutofacContainerModule.GetService<Idt_materielinfoRepository>(); }
|
}
|
}
|
}
|