public CityController(IMCityTasks cityTasks)
 {
     this._cityTasks = cityTasks;
 }
 public CustomerController(IMCustomerTasks customerTasks, IMCityTasks cityTasks)
 {
     this._customerTasks = customerTasks;
     this._cityTasks     = cityTasks;
 }