コード例 #1
0
 public LoginUserCommandHandler(
     GhostDriveDbContext context,
     IAccountService accountService)
 {
     _context        = context;
     _accountService = accountService;
 }
コード例 #2
0
 public UploadFileCommandHandler(
     GhostDriveDbContext context,
     IFileService fileService,
     IDateTime dateTime)
 {
     _context     = context;
     _fileService = fileService;
     _dateTime    = dateTime;
 }
コード例 #3
0
 public RegisterUserCommandHandler(
     GhostDriveDbContext context,
     IAccountService accountService,
     IDateTime dateTime)
 {
     _context        = context;
     _accountService = accountService;
     _dateTime       = dateTime;
 }
コード例 #4
0
 public GetUserListQueryHandler(GhostDriveDbContext context)
 {
     _context = context;
 }
コード例 #5
0
 public GetFileQueryHandler(GhostDriveDbContext context)
 {
     _context = context;
 }
コード例 #6
0
 public DeleteUserCommandHandler(GhostDriveDbContext context, IFileService fileService)
 {
     _context     = context;
     _fileService = fileService;
 }
コード例 #7
0
 public ShareFileCommandHandler(GhostDriveDbContext context)
 {
     _context = context;
 }
コード例 #8
0
 public DownloadFileQueryHandler(GhostDriveDbContext context, IFileService fileService)
 {
     _context     = context;
     _fileService = fileService;
 }
コード例 #9
0
 public GetShortLinkQueryHandler(GhostDriveDbContext context, IShortLinkService shortLinkService)
 {
     _context          = context;
     _shortLinkService = shortLinkService;
 }
コード例 #10
0
 public GetSharedFileListQueryHandler(GhostDriveDbContext context)
 {
     _context = context;
 }