public void Can_Create()
        {
            var cityDto = new CityDto()
            {
                Name = "example"
            };

            _sutDataService.CreateCity(cityDto);

            _mockRepo.Verify(x => x.Create(It.IsAny <City>()), Times.Once);
            _mockUow.Verify(x => x.Complete(), Times.Once);
            _mockMapperService.Verify(x => x.Map <City>(cityDto), Times.Once());
        }
        public void CreateCity(CityDomainModel newCityDomainModel)
        {
            var cityDtoModel = _mapperService.Map <CityDto>(newCityDomainModel);

            _cityDataService.CreateCity(cityDtoModel);
        }