Ejemplo n.º 1
0
 public AccountService(
     ISocialHubDbContext dbContext,
     ICryptographyService cryptographyService)
 {
     _dbContext           = dbContext;
     _cryptographyService = cryptographyService;
 }
Ejemplo n.º 2
0
 public PostService(ISocialHubDbContext dbContext, IAccountService accountService)
 {
     _dbContext      = dbContext;
     _accountService = accountService;
 }