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;
 }