|
|
using WIDESEA_Core.BaseProvider;
|
using WIDESEA_Core.Extensions.AutofacManager;
|
using WIDESEA_Entity.materielinfo;
|
using WIDESEA_Services.IRepositories;
|
using WIDESEA_Services.IServices;
|
|
namespace WIDESEA_Services.Services
|
{
|
public partial class dt_materielinfoService : ServiceBase<dt_materielinfo, Idt_materielinfoRepository>
|
, Idt_materielinfoService, IDependency
|
{
|
public dt_materielinfoService(Idt_materielinfoRepository repository)
|
: base(repository)
|
{
|
Init(repository);
|
}
|
public static Idt_materielinfoService Instance
|
{
|
get { return AutofacContainerModule.GetService<Idt_materielinfoService>(); }
|
}
|
}
|
}
|