public UserService(IOptions <AppSettings> appSettings, LazyDocContext context, EmailService emailService) { this._appSettings = appSettings.Value; this._context = context; this._emailService = emailService; }
public FichierService(LazyDocContext context, IDataProtectionProvider dataProtectionProvider) { this._context = context; this._protectorProvider = dataProtectionProvider; }
public DocumentService(IOptions <AppSettings> appSettings, LazyDocContext context) { this._context = context; this._appSettings = appSettings.Value; }
public TagService(LazyDocContext context) { this._context = context; }