public ControllerCatalog()
 {
     dbc = new DBController();
     ec = new EmployeeCatalog();
     tc = new TaskCatalog();
     oc = new OrderCatalog();
     cc = new CustomerCatalog();
     ofc = new OfferCatalog();
     ic = new ItemCatalog();
     xml = new XML();
 }
Beispiel #2
0
 public SalesEmployee(int ID, string fn, string sn, string adress, int postalCode, string city, int phone, double salary)
     : base(ID, fn, sn, adress, postalCode, city, phone, salary)
 {
     cc = new CustomerCatalog();
 }