Ejemplo n.º 1
0
 public PostingAuthController(AppContext dbParam, CustomerAccountLogic custActLogicParam, TellerPostingLogic telPostLogicParam, FinancialReportLogic reportLogicParam, BusinessLogic busLogicParam)
 {
     db           = new AppContext();
     custActLogic = new CustomerAccountLogic();
     telPostLogic = new TellerPostingLogic();
     reportLogic  = new FinancialReportLogic();
     busLogic     = new BusinessLogic();
 }
Ejemplo n.º 2
0
 public PostingAuthController(AppContext dbParam, CustomerAccountLogic custActLogicParam, TellerPostingLogic telPostLogicParam, FinancialReportLogic reportLogicParam, BusinessLogic busLogicParam)
 {
     db           = dbParam;
     custActLogic = custActLogicParam;
     telPostLogic = telPostLogicParam;
     reportLogic  = reportLogicParam;
     busLogic     = busLogicParam;
 }
Ejemplo n.º 3
0
 public PostingAuthController()
 {
     db           = new AppContext();
     custActLogic = new CustomerAccountLogic();
     telPostLogic = new TellerPostingLogic();
     reportLogic  = new FinancialReportLogic();
     busLogic     = new BusinessLogic();
 }