|
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_plcinfodetailService : ServiceBase<dt_plcinfodetail, Idt_plcinfodetailRepository>, Idt_plcinfodetailService, IDependency
|
{
|
public dt_plcinfodetailService(Idt_plcinfodetailRepository repository)
|
: base(repository)
|
{
|
Init(repository);
|
}
|
public static Idt_plcinfodetailService Instance
|
{
|
get { return AutofacContainerModule.GetService<Idt_plcinfodetailService>(); }
|
}
|
}
|
}
|