示例#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;
 }
 public UpdateMeterCommandHandler(IAmrDbContext context)
 {
     _context = context;
 }
示例#7
0
 public GeneratePDFCommandHandler(IAmrDbContext context, IIdentityService identityService, IConverter converter)
 {
     _context         = context;
     _identityService = identityService;
     _converter       = converter;
 }
 public GetDeviceVendorLiteQueryHandler(IAmrDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public CreateUserBasicDataCommandHandler(IAmrDbContext context)
 {
     _context = context;
 }