|
using WIDESEA_Services.IRepositories;
|
using WIDESEA_Services.IServices;
|
using WIDESEA_Core.BaseProvider;
|
using WIDESEA_Core.Extensions.AutofacManager;
|
using WIDESEA_Entity.DomainModels;
|
|
namespace WIDESEA_Services.Services
|
{
|
public partial class dt_plcinfoheadService : ServiceBase<dt_plcinfohead, Idt_plcinfoheadRepository>, Idt_plcinfoheadService, IDependency
|
{
|
public dt_plcinfoheadService(Idt_plcinfoheadRepository repository)
|
: base(repository)
|
{
|
Init(repository);
|
}
|
public static Idt_plcinfoheadService Instance
|
{
|
get { return AutofacContainerModule.GetService<Idt_plcinfoheadService>(); }
|
}
|
}
|
}
|