public CreateLikeCommandHandler(IPGPDbContext context, ICurrentUserService currentUserService) { _context = context; _currentUserService = currentUserService; }
public DeleteCategoryCommandHandler(IPGPDbContext context) { _context = context; }
public UserLoginCommandHandler(IPGPDbContext context, IOptions <AppSettings> appsettings) { _context = context; _appSettings = appsettings.Value; }
public DeletePetCommandHandler(IPGPDbContext context, ICurrentUserService currentUserService) { _context = context; _currentUserService = currentUserService; }
public CreateUserCommandHandler(IPGPDbContext context) { _context = context; }
public GetAllLikedPetsByUserIdQueryHandler(IPGPDbContext context) { _context = context; }
public GetAllPetsByCategoryIdQueryHandler(IPGPDbContext context, ICurrentUserService currentUserService) { _context = context; _currentUserService = currentUserService; }
public UpdateCommentCommandHandler(IPGPDbContext context, ICurrentUserService currentUserService) { _context = context; _currentUserService = currentUserService; }
public GetUserByIdQueryHandler(IPGPDbContext context) { _context = context; }
public GetAllUsersQueryHandler(IPGPDbContext context) { _context = context; }
public GetAllUserCreatedPetsQueryHandler(IPGPDbContext context, ICurrentUserService currentUserService) { _context = context; _currentUserService = currentUserService; }
public GetAllCommentsQueryHandler(IPGPDbContext context) { _context = context; }
public GetAllCategoriesQueryHandler(IPGPDbContext context) { _context = context; }
public GetCategoryByIdQueryHandler(IPGPDbContext context) { _context = context; }
public GetCommentByIdQueryHandler(IPGPDbContext context) { _context = context; }