Exemplo n.º 1
0
        public ClientController(
            IServiceClient serviceClient,
            IServiceUser serviceUser,
            IServiceCity serviceCity,
            IServiceRegion serviceRegion,
            IServiceClassification serviceClassification
            )
        {
            _serviceClient = serviceClient;
            _serviceUser   = serviceUser;

            _serviceCity           = serviceCity;
            _serviceRegion         = serviceRegion;
            _serviceClassification = serviceClassification;
        }
Exemplo n.º 2
0
 public ApplicationServiceCity(IServiceCity serviceCity,
                               IMapperCity mapperCity)
 {
     _serviceCity = serviceCity;
     _mapperCity  = mapperCity;
 }