Ejemplo n.º 1
0
        public List <AdProductsModel> GetAdGridModel(Guid countryId)
        {
            var entities = _repository.GetAdGrid(countryId);

            if (entities == null)
            {
                throw new Exception(LOCALIZATION_AD_NOT_FOUND);
            }

            return(AdMapper.MapToAdProductsModel(entities));
        }