Exemplo n.º 1
0
 public AccountController(AccountManager accountManager,
                          IFileService fileService,
                          StatsManager statsManager,
                          AccountFriendManager accountFriendManager,
                          FriendRequestManager friendRequestManager,
                          DataContext dataContext,
                          SessionManager sessionManager,
                          AccountItemManager accountItemManager,
                          ShopItemManager shopItemManager,
                          IImageProcessingService imageProcessingService,
                          FileManager fileManager,
                          IOptions <FileOptions> options, JwtTokenGenerator tokenGenerator, NotificationManager notificationManager)
 {
     _accountManager         = accountManager;
     _fileService            = fileService;
     _statsManager           = statsManager;
     _accountFriendManager   = accountFriendManager;
     _friendRequestManager   = friendRequestManager;
     _dataContext            = dataContext;
     _sessionManager         = sessionManager;
     _accountItemManager     = accountItemManager;
     _shopItemManager        = shopItemManager;
     _imageProcessingService = imageProcessingService;
     _fileManager            = fileManager;
     _tokenGenerator         = tokenGenerator;
     _notificationManager    = notificationManager;
     _options = options.Value;
 }
Exemplo n.º 2
0
 public ChatController(DataContext context, AccountFriendManager accountFriendManager)
 {
     _context = context;
     _accountFriendManager = accountFriendManager;
 }