public CustomersManager(ICustomersDB customersDB)
 {
     CustomersDB = customersDB;
 }
Example #2
0
 public CustomersManager(ICustomersDB customersDB)
 {
     CustomersDbObject = customersDB;
 }
Example #3
0
 public CustomersManager(ICustomersDB customersDB, ICitiesDB citiesDB)
 {
     CustomersDbObject = customersDB;
     CitiesDB          = citiesDB;
 }