示例#1
0
 public PhoneCall()
 {
     dataAccess       = new DAO();
     cus              = new Customer();
     resp             = new Response();
     cusPhone         = new CustomerPhone();
     rec              = new Recharge();
     call             = new Call();
     cusBonus         = new CustomerBonus();
     transValidations = new BusinessValidations();
 }
 public PhoneTransactions()
 {
     dataAccess       = new DAO();
     resp             = new Response();
     cus              = new Customer();
     phoneBalance     = new CustomerPhone();
     transValidations = new BusinessValidations();
     cusBonus         = new CustomerBonus();
     rec              = new Recharge();
     listCus          = new List <CustomerBonus>();
 }
示例#3
0
 public BusinessController(IBusinessLogic businessLogic, BusinessValidations businessValidations)
 {
     _businessLogic       = businessLogic;
     _businessValidations = businessValidations;
 }