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