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