Beispiel #1
0
        public async Task <IEnumerable <CategoriasViewModel> > GetCategorias()
        {
            IEnumerable <Categorias> result = await _dropdownRepository.GetCategorias();

            return(_mapper.Map <IEnumerable <CategoriasViewModel> >(result));
        }