|
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_dispatchmanagementService : ServiceBase<dt_dispatchmanagement, Idt_dispatchmanagementRepository>
|
, Idt_dispatchmanagementService, IDependency
|
{
|
public dt_dispatchmanagementService(Idt_dispatchmanagementRepository repository)
|
: base(repository)
|
{
|
Init(repository);
|
}
|
public static Idt_dispatchmanagementService Instance
|
{
|
get { return AutofacContainerModule.GetService<Idt_dispatchmanagementService>(); } }
|
}
|
}
|