public RegisterCommandHandler(IADODBContext <CIB_UserLogin> context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #2
0
 public RegisterCommandHandler(IADODBContext <CIB_TicketDeatils> context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #3
0
 public RequestAssistanceCommandHandler(IADODBContext <CIB_CustomerAssistance> contextCA, IADODBContext <CIB_TicketDeatils> contextTKT, IMapper mapper)
 {
     _contextCA  = contextCA;
     _contextTKT = contextTKT;
     _mapper     = mapper;
 }