public CreateLikeCommandHandler(IPGPDbContext context, ICurrentUserService currentUserService)
 {
     _context            = context;
     _currentUserService = currentUserService;
 }
示例#2
0
 public DeleteCategoryCommandHandler(IPGPDbContext context)
 {
     _context = context;
 }
 public UserLoginCommandHandler(IPGPDbContext context, IOptions <AppSettings> appsettings)
 {
     _context     = context;
     _appSettings = appsettings.Value;
 }
示例#4
0
 public DeletePetCommandHandler(IPGPDbContext context, ICurrentUserService currentUserService)
 {
     _context            = context;
     _currentUserService = currentUserService;
 }
 public CreateUserCommandHandler(IPGPDbContext context)
 {
     _context = context;
 }
 public GetAllLikedPetsByUserIdQueryHandler(IPGPDbContext context)
 {
     _context = context;
 }
示例#7
0
 public GetAllPetsByCategoryIdQueryHandler(IPGPDbContext context, ICurrentUserService currentUserService)
 {
     _context            = context;
     _currentUserService = currentUserService;
 }
示例#8
0
 public UpdateCommentCommandHandler(IPGPDbContext context, ICurrentUserService currentUserService)
 {
     _context            = context;
     _currentUserService = currentUserService;
 }
 public GetUserByIdQueryHandler(IPGPDbContext context)
 {
     _context = context;
 }
示例#10
0
 public GetAllUsersQueryHandler(IPGPDbContext context)
 {
     _context = context;
 }
 public GetAllUserCreatedPetsQueryHandler(IPGPDbContext context, ICurrentUserService currentUserService)
 {
     _context            = context;
     _currentUserService = currentUserService;
 }
 public GetAllCommentsQueryHandler(IPGPDbContext context)
 {
     _context = context;
 }
示例#13
0
 public GetAllCategoriesQueryHandler(IPGPDbContext context)
 {
     _context = context;
 }
 public GetCategoryByIdQueryHandler(IPGPDbContext context)
 {
     _context = context;
 }
示例#15
0
 public GetCommentByIdQueryHandler(IPGPDbContext context)
 {
     _context = context;
 }