public WhiteboardService(
     VirtualWhiteboardContext context,
     IAccountService accountService,
     ITeamService teamService
     )
 {
     _context        = context;
     _accountService = accountService;
     _teamService    = teamService;
 }
Esempio n. 2
0
        public AccountService(
            VirtualWhiteboardContext context,
            IOptions <AppSettings> options,
            IMapperService mapperService
            )
        {
            _context     = context;
            _appSettings = options.Value;

            _mapperService = mapperService;

            _hasher = new SHA256Managed();
            _rngCsp = new RNGCryptoServiceProvider();
        }
Esempio n. 3
0
 public TeamService(VirtualWhiteboardContext context)
 {
     _context = context;
 }