Example #1
0
 public VTController(
     IAreaRestService areaService
     , IClientRestService clientService
     , ILocationRestService locationService
     , ITourRestService tourService)
 {
     _areaService     = areaService;
     _clientService   = clientService;
     _locationService = locationService;
     _tourService     = tourService;
 }
 public HomeController(IClientRestService clientService)
 {
     _clientService = clientService;
 }