public async Task <IEnumerable <ThemeAttributesDrivedModel> > GetThemeAttributes(ThemeAttributesModel themeAttributesModel)
 {
     return(await _iThemeAttributesRepository.GetThemeAttributes(themeAttributesModel));
 }
Beispiel #2
0
        public async Task <ActionResult> Get([FromQuery] ThemeAttributesModel themeAttributesModel)
        {
            var listThemeAttributes = await _iThemeAttributesService.GetThemeAttributes(themeAttributesModel);

            return(Ok(listThemeAttributes));
        }
 public async Task <IEnumerable <ThemeAttributesDrivedModel> > GetThemeAttributes(ThemeAttributesModel themeAttributesModel)
 {
     return(await Query <ThemeAttributesDrivedModel>("Flo.GetFloristThemeAttributes", themeAttributesModel));
 }