コード例 #1
0
 public DeleteGatewayCommandHandler(IAmrDbContext context)
 {
     _context = context;
 }
コード例 #2
0
 public GetAllMetersQueryHandler(IAmrDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #3
0
 public RegisterCommandHandler(IAmrDbContext context, IIdentityService identityService)
 {
     _context         = context;
     _identityService = identityService;
 }
コード例 #4
0
 public GetDeviceVendorDetailsByIdQueryHandler(IAmrDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #5
0
 public GetMeterModelLiteQueryHandler(IAmrDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #6
0
 public UpdateMeterCommandHandler(IAmrDbContext context)
 {
     _context = context;
 }
コード例 #7
0
 public GeneratePDFCommandHandler(IAmrDbContext context, IIdentityService identityService, IConverter converter)
 {
     _context         = context;
     _identityService = identityService;
     _converter       = converter;
 }
コード例 #8
0
 public GetDeviceVendorLiteQueryHandler(IAmrDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #9
0
 public CreateUserBasicDataCommandHandler(IAmrDbContext context)
 {
     _context = context;
 }