public GetErrandQueryHandler(
     ICurrentDateService currentDateService,
     ICurrentUserProvider currentUserProvider,
     IDeratControlDbContext db) : base(currentDateService, currentUserProvider)
 {
     this.db = db;
 }
 public GetEmployeeErrandListQueryHandler(
     IDeratControlDbContext db,
     ICurrentDateService currentDateService,
     ICurrentUserProvider currentUserProvider) : base(currentDateService, currentUserProvider)
 {
     this.db = db;
 }
 public DeleteErrandCommandHandler(
     IDeratControlDbContext db,
     ICurrentDateService currentDateService,
     ICurrentUserProvider currentUserProvider) : base(currentDateService, currentUserProvider)
 {
     this.db = db;
 }
 public GetErrandListQueryHandler(
     ICurrentUserProvider currentUserProvider,
     ICurrentDateService currentDateService,
     IDeratControlDbContext db,
     IMediator mediator) : base(currentDateService, currentUserProvider)
 {
     this.db       = db;
     this.mediator = mediator;
 }
 public DeleteTrapCommandHandler(
     IMemoryCache cache,
     IDeratControlDbContext db,
     ICurrentDateService currentDateService,
     ICurrentUserProvider currentUserProvider) : base(currentDateService, currentUserProvider)
 {
     this.cache = cache;
     this.db    = db;
 }
Beispiel #6
0
 public GetFacilityListQueryHandler(
     ICurrentUserProvider currentUserProvider,
     IDeratControlDbContext db,
     IMapper mapper,
     ICurrentDateService currentDateService) : base(currentDateService, currentUserProvider)
 {
     this.db     = db;
     this.mapper = mapper;
 }
Beispiel #7
0
 public GetTrapListQueryHandler(
     ICurrentDateService currentDateService,
     ICurrentUserProvider currentUserProvider,
     IDeratControlDbContext db,
     IMemoryCache cache,
     IMapper mapper) : base(currentDateService, currentUserProvider)
 {
     this.db     = db;
     this.cache  = cache;
     this.mapper = mapper;
 }
 public DeleteSupplementCommandHandler(
     IMemoryCache cache,
     ICurrentDateService currentDateService,
     ICurrentUserProvider currentUserProvider,
     IDeratControlDbContext db,
     IFileStorage fileStorage) : base(currentDateService, currentUserProvider)
 {
     this.cache       = cache;
     this.db          = db;
     this.fileStorage = fileStorage;
 }
Beispiel #9
0
 public GenerateReportCommandHandler(
     ICurrentUserProvider currentUserProvider,
     ICurrentDateService currentDateService,
     IDeratControlDbContext db,
     IReportBuilder reportBuilder,
     IStringLocalizer <SharedResource> localizer,
     IFileStorage fileStorage) : base(currentDateService, currentUserProvider)
 {
     this.db            = db;
     this.reportBuilder = reportBuilder;
     this.localizer     = localizer;
     this.fileStorage   = fileStorage;
 }
Beispiel #10
0
 public GetSupplementListQueryHandler(
     ICurrentDateService currentDateService,
     ICurrentUserProvider currentUserProvider,
     IDeratControlDbContext db,
     IMapper mapper,
     IMemoryCache cache,
     IFileStorage fileStorage) : base(currentDateService, currentUserProvider)
 {
     this.db          = db;
     this.mapper      = mapper;
     this.cache       = cache;
     this.fileStorage = fileStorage;
 }
Beispiel #11
0
 public GetPerimeterSchemeImageQueryHandler(IDeratControlDbContext db, IFileStorage fileStorage)
 {
     this.db          = db;
     this.fileStorage = fileStorage;
 }
 public DeleteFacilityCommandHandler(IDeratControlDbContext db)
 {
     this.db = db;
 }
 public DeletePerimeterCommandHandler(IDeratControlDbContext db)
 {
     this.db = db;
 }
 public GetPerimeterDetailQueryHandler(IDeratControlDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public PointReviewHistoryQueryHandler(IDeratControlDbContext db)
 {
     this.db = db;
 }