public FeedersController(IoTPetFeederDbContext context)
 {
     _context = context;
 }
 public UsersController(IoTPetFeederDbContext context, IOptions <JwtSettings> jwtSettings)
 {
     _context     = context;
     _jwtSettings = jwtSettings.Value;
 }