public DonorStatementController(IDonorStatementService donorStatementService)
 {
     _donorStatementService = donorStatementService;
 }
Пример #2
0
 public DonorStatementController(IDonorStatementService donorStatementService, IUserImpersonationService userImpersonationService, IAuthenticationRepository authenticationRepository) : base(userImpersonationService, authenticationRepository)
 {
     _donorStatementService = donorStatementService;
 }
Пример #3
0
 public DonorStatementController(IDonorStatementService donorStatementService, IUserImpersonationService userImpersonationService) : base(userImpersonationService)
 {
     _donorStatementService = donorStatementService;
 }