Пример #1
0
 public AddApplianceUsageCommandHandler(ISolarTallyDbContext context,
                                        IMediator mediator, IMapper mapper)
 {
     _context  = context;
     _mediator = mediator;
     _mapper   = mapper;
 }
 public GetApplianceUsagesByIdQueryHandler(
     ISolarTallyDbContext context,
     IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #3
0
 public GetSiteBriefsListQueryHandler(ISolarTallyDbContext context,
                                      IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #4
0
 public CustomSeeder(ISolarTallyDbContext context)
 {
     _context = context;
 }
Пример #5
0
 public GetConsumptionByIdQueryHandler(ISolarTallyDbContext context,
                                       IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }