public CategoryService(LetsPlayDbContext context) { _context = context; }
public LocationController(LetsPlayDbContext context) { _context = context; }
public CategoryService(LetsPlayDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public FriendshipsService(LetsPlayDbContext context, UserManager <ApplicationUser> userManager) { _context = context; _userManager = userManager; }
public EventService(LetsPlayDbContext dbContext, IMapper mapper, IHttpContextAccessor httpContext) { _dbContext = dbContext; _mapper = mapper; _httpContext = httpContext; }
public ChatService(LetsPlayDbContext context) { _context = context; }
public EventService (LetsPlayDbContext dbContext) { _dbContext = dbContext; }
public MessagesService(LetsPlayDbContext context) { _context = context; }
public UserEventService(LetsPlayDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public EventController(LetsPlayDbContext dbContext, IEventService eventService) { _dbContext = dbContext; _eventService = eventService; }