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; }
public GetPersonProjectsListQueryHandler(CentralLendingContext context) { this.context = context; }
public GetPersonDetailQueryHandler(CentralLendingContext context) { this.context = context; }
public AuthenticateCommandHandler(CentralLendingContext context, IPasswordService passwordService) { this.context = context; this.passwordService = passwordService; }
public RegisterCommandHandler(CentralLendingContext context, IPasswordService passwordService) { this.context = context; this.passwordService = passwordService; }
public GetProjectDetailQueryHandler(CentralLendingContext context) { _context = context; }
public UpdatePersonCommandHandler(CentralLendingContext context, IPasswordService passwordService) { this.context = context; this.passwordService = passwordService; }
public DeletePersonCommandHandler(CentralLendingContext context) { this.context = context; }