Beispiel #1
0
 public CustomerController(IAddCustomer addCustomer, IUpdateCustomer updateCustomer, IGetCustomer getCustomer,
                           IDeleteCustomer deleteCustomer)
 {
     this.addCustomer    = addCustomer;
     this.updateCustomer = updateCustomer;
     this.getCustomer    = getCustomer;
     this.deleteCustomer = deleteCustomer;
 }
 public Controller(IAddCustomer customerView)
 {
     addCustomer_View = customerView;
 }