Esempio n. 1
0
 public BaseController()
 {
     // TODO: DI
     dataLogic        = new DataLogic();
     bankLogic        = new BankLogic();
     userLogic        = new UserLogic();
     orderLogic       = new OrderLogic();
     legalLogic       = new LegalLogic();
     personLogic      = new PersonLogic();
     requestLogic     = new RequestLogic();
     identityLogic    = new IdentityLogic();
     employeeLogic    = new EmployeeLogic();
     documentLogic    = new DocumentLogic();
     contractLogic    = new ContractLogic();
     pricelistLogic   = new PricelistLogic();
     contractorLogic  = new ContractorLogic();
     accountingLogic  = new AccountingLogic();
     participantLogic = new ParticipantLogic();
 }
Esempio n. 2
0
 public FormDeposit(IBankLogic bank, IDepositLogic deposit)
 {
     InitializeComponent();
     this.bank    = bank;
     this.deposit = deposit;
 }
Esempio n. 3
0
 public FormBanks(IBankLogic bank)
 {
     InitializeComponent();
     this.bank = bank;
 }
Esempio n. 4
0
 public ReportLogic(IBankLogic bank, IDepositLogic deposit)
 {
     this.bank    = bank;
     this.deposit = deposit;
 }