public UserService( LoconotesDbContext dbContext, ICryptoService cryptoService ) { _dbContext = dbContext; _cryptoService = cryptoService; }
public AuthService( LoconotesDbContext dbContext , ICryptoService cryptoService , IJwtService jwtService ) { _dbContext = dbContext; _cryptoService = cryptoService; _jwtService = jwtService; }
public NoteService( LoconotesDbContext dbContext, INoteConverter noteConverter) { _dbContext = dbContext; _noteConverter = noteConverter; }
public BaseDataService( LoconotesDbContext dbContext ) { DbContext = dbContext; }