public LoginUserCommandHandler(
     GhostDriveDbContext context,
     IAccountService accountService)
 {
     _context        = context;
     _accountService = accountService;
 }
Exemplo n.º 2
0
 public UploadFileCommandHandler(
     GhostDriveDbContext context,
     IFileService fileService,
     IDateTime dateTime)
 {
     _context     = context;
     _fileService = fileService;
     _dateTime    = dateTime;
 }
Exemplo n.º 3
0
 public RegisterUserCommandHandler(
     GhostDriveDbContext context,
     IAccountService accountService,
     IDateTime dateTime)
 {
     _context        = context;
     _accountService = accountService;
     _dateTime       = dateTime;
 }
Exemplo n.º 4
0
 public GetUserListQueryHandler(GhostDriveDbContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public GetFileQueryHandler(GhostDriveDbContext context)
 {
     _context = context;
 }
 public DeleteUserCommandHandler(GhostDriveDbContext context, IFileService fileService)
 {
     _context     = context;
     _fileService = fileService;
 }
Exemplo n.º 7
0
 public ShareFileCommandHandler(GhostDriveDbContext context)
 {
     _context = context;
 }
 public DownloadFileQueryHandler(GhostDriveDbContext context, IFileService fileService)
 {
     _context     = context;
     _fileService = fileService;
 }
 public GetShortLinkQueryHandler(GhostDriveDbContext context, IShortLinkService shortLinkService)
 {
     _context          = context;
     _shortLinkService = shortLinkService;
 }
 public GetSharedFileListQueryHandler(GhostDriveDbContext context)
 {
     _context = context;
 }