Example #1
0
 public CategoryService(LetsPlayDbContext context)
 {
     _context = context;
 }
Example #2
0
 public LocationController(LetsPlayDbContext context)
 {
     _context = context;
 }
Example #3
0
 public CategoryService(LetsPlayDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #4
0
 public FriendshipsService(LetsPlayDbContext context, UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
Example #5
0
 public EventService(LetsPlayDbContext dbContext, IMapper mapper, IHttpContextAccessor httpContext)
 {
     _dbContext   = dbContext;
     _mapper      = mapper;
     _httpContext = httpContext;
 }
Example #6
0
 public ChatService(LetsPlayDbContext context)
 {
     _context = context;
 }
Example #7
0
 public EventService (LetsPlayDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #8
0
 public MessagesService(LetsPlayDbContext context)
 {
     _context = context;
 }
Example #9
0
 public UserEventService(LetsPlayDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #10
0
 public EventController(LetsPlayDbContext dbContext, IEventService eventService)
 {
     _dbContext    = dbContext;
     _eventService = eventService;
 }