|
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_selectionRecordService : ServiceBase<dt_selectionRecord, Idt_selectionRecordRepository>
|
, Idt_selectionRecordService, IDependency
|
{
|
public dt_selectionRecordService(Idt_selectionRecordRepository repository)
|
: base(repository)
|
{
|
Init(repository);
|
}
|
public static Idt_selectionRecordService Instance
|
{
|
get { return AutofacContainerModule.GetService<Idt_selectionRecordService>(); } }
|
}
|
}
|