Пример #1
0
 public ClientsService(
     IGangsterBankUnitOfWork gangsterBankUnitOfWork,
     IMailService mailService)
 {
     Contract.Requires<ArgumentNullException>(gangsterBankUnitOfWork != null);
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
     this.mailService = mailService;
 }
Пример #2
0
 public PaymentService(
     IGangsterBankUnitOfWork gangsterBankUnitOfWork,
     IMailService mailService)
 {
     Contract.Requires<ArgumentNullException>(gangsterBankUnitOfWork.IsNotNull());
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
     this.mailService = mailService;
 }
 public PaymentService(
     IGangsterBankUnitOfWork gangsterBankUnitOfWork,
     IMailService mailService)
 {
     Contract.Requires <ArgumentNullException>(gangsterBankUnitOfWork.IsNotNull());
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
     this.mailService            = mailService;
 }
 public ClientsService(
     IGangsterBankUnitOfWork gangsterBankUnitOfWork,
     IMailService mailService)
 {
     Contract.Requires <ArgumentNullException>(gangsterBankUnitOfWork != null);
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
     this.mailService            = mailService;
 }
 public CreditService(
     IGangsterBankUnitOfWork gangsterBankUnitOfWork,
     LoanProductCreationWorkflowConfiguration loanProductCreationWorkflowConfiguration,
     IUserContext userContext)
 {
     Contract.Requires <ArgumentNullException>(gangsterBankUnitOfWork.IsNotNull());
     Contract.Requires <ArgumentNullException>(loanProductCreationWorkflowConfiguration.IsNotNull());
     Contract.Requires <ArgumentNullException>(userContext.IsNotNull());
     this.loanProductCreationWorkflowConfiguration = loanProductCreationWorkflowConfiguration;
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
     this.userContext            = userContext;
 }
Пример #6
0
 public CreditService(
     IGangsterBankUnitOfWork gangsterBankUnitOfWork, 
     LoanProductCreationWorkflowConfiguration loanProductCreationWorkflowConfiguration, 
     IUserContext userContext)
 {
     Contract.Requires<ArgumentNullException>(gangsterBankUnitOfWork.IsNotNull());
     Contract.Requires<ArgumentNullException>(loanProductCreationWorkflowConfiguration.IsNotNull());
     Contract.Requires<ArgumentNullException>(userContext.IsNotNull());
     this.loanProductCreationWorkflowConfiguration = loanProductCreationWorkflowConfiguration;
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
     this.userContext = userContext;
 }
Пример #7
0
 public LoanRequestsService(
     IGangsterBankUnitOfWork gangsterBankUnitOfWork, 
     ILoanRequestPrerequisiteRule loanRequestPrerequisiteRule,
     ICreditManager creditManager,
     IMailService mailService)
 {
     Contract.Requires<ArgumentNullException>(gangsterBankUnitOfWork.IsNotNull());
     Contract.Requires<ArgumentNullException>(loanRequestPrerequisiteRule.IsNotNull());
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
     this.loanRequestPrerequisiteRule = loanRequestPrerequisiteRule;
     this.creditManager = creditManager;
     this.mailService = mailService;
 }
Пример #8
0
 public LoanRequestsService(
     IGangsterBankUnitOfWork gangsterBankUnitOfWork,
     ILoanRequestPrerequisiteRule loanRequestPrerequisiteRule,
     ICreditManager creditManager,
     IMailService mailService)
 {
     Contract.Requires <ArgumentNullException>(gangsterBankUnitOfWork.IsNotNull());
     Contract.Requires <ArgumentNullException>(loanRequestPrerequisiteRule.IsNotNull());
     this.gangsterBankUnitOfWork      = gangsterBankUnitOfWork;
     this.loanRequestPrerequisiteRule = loanRequestPrerequisiteRule;
     this.creditManager = creditManager;
     this.mailService   = mailService;
 }
Пример #9
0
 public PayLoanPaymentsTask(IGangsterBankUnitOfWork gangsterBankUnitOfWork, IPaymentService paymentService)
 {
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
     this.paymentService = paymentService;
 }
Пример #10
0
 public ClientProfileService(IGangsterBankUnitOfWork gangsterBankUnitOfWork)
 {
     Contract.Requires <ArgumentNullException>(gangsterBankUnitOfWork.IsNotNull());
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
 }
Пример #11
0
 public PersonalDetailsService(IGangsterBankUnitOfWork gangsterBankUnitOfWork)
 {
     Contract.Requires <ArgumentNullException>(gangsterBankUnitOfWork != null);
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
 }
Пример #12
0
 public ClientProfileService(IGangsterBankUnitOfWork gangsterBankUnitOfWork)
 {
     Contract.Requires<ArgumentNullException>(gangsterBankUnitOfWork.IsNotNull());
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
 }
Пример #13
0
 public CitiesService(IGangsterBankUnitOfWork gangsterBankUnitOfWork)
 {
     Contract.Requires<ArgumentNullException>(gangsterBankUnitOfWork != null);
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
 }
 public PayLoanPaymentsTask(IGangsterBankUnitOfWork gangsterBankUnitOfWork, IPaymentService paymentService)
 {
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
     this.paymentService         = paymentService;
 }
 public UserService(IUserEntityStore store, IGangsterBankUnitOfWork gangsterBankUnitOfWork)
     : base(store)
 {
     Contract.Requires <ArgumentNullException>(gangsterBankUnitOfWork.IsNotNull());
     this.gangsterBankUnitOfWork = gangsterBankUnitOfWork;
 }