Exemplo n.º 1
0
 public GetLPUserQueryHandler(LPContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 2
0
 public CreateUserCommandHandler(LPContext context, IMediator mediator, IMapper mapper)
 {
     _context  = context;
     _mediator = mediator;
     _mapper   = mapper;
 }
Exemplo n.º 3
0
 public CreatePetCommandHandler(LPContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public GetAllPetsQueryHandler(LPContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 5
0
 public AccountService(FacebookService facebookService, JwtHandler jwtHandler, LPContext context)
 {
     _facebookService = facebookService;
     _jwtHandler      = jwtHandler;
     _context         = context;
 }