public DevicesController(sendesContext context) { _context = context; }
public UserCreator(sendesContext sendesContext) { _sendesContext = sendesContext; }
public PurchaseController(EmailClient emailClient, sendesContext sendesContext) { _sendesContext = sendesContext; _emailClient = emailClient; }
public UserController(sendesContext sendesContext, UserCreator userCreator) { _userCreator = userCreator; _sendesContext = sendesContext; }
public DeviceTypeController(sendesContext sendesContext) { _sendesContext = sendesContext; }
public Authenticator(sendesContext sendesContext, IOptions <AppSettings> appSettings) { _sendesContext = sendesContext; _appSettings = appSettings.Value; }
public PlantsController(sendesContext context) { _context = context; }
public AuthController(sendesContext context, Authenticator authenticator) { _context = context; _authenticator = authenticator; }
public WeatherForecastController(ILogger <WeatherForecastController> logger, sendesContext sendesContext) { _logger = logger; _sendesContext = sendesContext; }