コード例 #1
0
 public RemovePersonProjectCommandHandler(CentralLendingContext context)
 {
     this.context = context;
 }
コード例 #2
0
 public AddPersonProjectCommandHandler(CentralLendingContext context, IMediator mediator)
 {
     this.context  = context;
     this.mediator = mediator;
 }
 public GetPersonMonthlyStatisticsQueryHandler(CentralLendingContext context)
 {
     this.context = context;
 }
コード例 #4
0
 public UpdateProjectStartDateCommandHandler(CentralLendingContext context)
 {
     this.context = context;
 }
コード例 #5
0
 public GetPersonProjectsListQueryHandler(CentralLendingContext context)
 {
     this.context = context;
 }
コード例 #6
0
 public GetPersonDetailQueryHandler(CentralLendingContext context)
 {
     this.context = context;
 }
コード例 #7
0
 public AuthenticateCommandHandler(CentralLendingContext context, IPasswordService passwordService)
 {
     this.context         = context;
     this.passwordService = passwordService;
 }
コード例 #8
0
 public RegisterCommandHandler(CentralLendingContext context, IPasswordService passwordService)
 {
     this.context         = context;
     this.passwordService = passwordService;
 }
コード例 #9
0
 public GetProjectDetailQueryHandler(CentralLendingContext context)
 {
     _context = context;
 }
コード例 #10
0
 public UpdatePersonCommandHandler(CentralLendingContext context, IPasswordService passwordService)
 {
     this.context         = context;
     this.passwordService = passwordService;
 }
コード例 #11
0
 public DeletePersonCommandHandler(CentralLendingContext context)
 {
     this.context = context;
 }