Example #1
0
 public UserService(
     LoconotesDbContext dbContext,
     ICryptoService cryptoService
     )
 {
     _dbContext     = dbContext;
     _cryptoService = cryptoService;
 }
Example #2
0
 public AuthService(
     LoconotesDbContext dbContext
     , ICryptoService cryptoService
     , IJwtService jwtService
     )
 {
     _dbContext     = dbContext;
     _cryptoService = cryptoService;
     _jwtService    = jwtService;
 }
Example #3
0
 public NoteService(
     LoconotesDbContext dbContext, INoteConverter noteConverter)
 {
     _dbContext     = dbContext;
     _noteConverter = noteConverter;
 }
Example #4
0
 public BaseDataService(
     LoconotesDbContext dbContext
     )
 {
     DbContext = dbContext;
 }