예제 #1
0
 public RemovePersonProjectCommandHandler(CentralLendingContext context)
 {
     this.context = context;
 }
 public AddPersonProjectCommandHandler(CentralLendingContext context, IMediator mediator)
 {
     this.context  = context;
     this.mediator = mediator;
 }
 public GetPersonMonthlyStatisticsQueryHandler(CentralLendingContext context)
 {
     this.context = context;
 }
 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;
 }
 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;
 }
 public GetProjectDetailQueryHandler(CentralLendingContext context)
 {
     _context = context;
 }
예제 #10
0
 public UpdatePersonCommandHandler(CentralLendingContext context, IPasswordService passwordService)
 {
     this.context         = context;
     this.passwordService = passwordService;
 }
 public DeletePersonCommandHandler(CentralLendingContext context)
 {
     this.context = context;
 }