public DailyFitnessesController(maindbContext context)
 {
     _context = context;
 }
 public PasswordResetsController(maindbContext context)
 {
     _context = context;
 }
Example #3
0
 public UsersController(maindbContext context, IUserService userService, IConfiguration configuration)
 {
     _context      = context;
     _userService  = userService;
     Configuration = configuration;
 }
 public FriendshipRequestsController(maindbContext context)
 {
     _context = context;
 }
Example #5
0
 public SleepsController(maindbContext context)
 {
     _context = context;
 }
Example #6
0
 public UsersController(maindbContext context)
 {
     _context = context;
 }
Example #7
0
 public UserService(maindbContext context)
 {
     _context = context;
 }