Ejemplo n.º 1
0
 public ClientProfileController(IPostCargoService postCargoService, IPostTransportService postTransportService,
                                ICountryService countryService)
 {
     _postCargoService     = postCargoService;
     _postTransportService = postTransportService;
     _countryService       = countryService;
 }
Ejemplo n.º 2
0
 public PostCargoController(IPostCargoService postCargoService, ICountryService countryService)
 {
     _postCargoService = postCargoService;
     _countryService   = countryService;
 }