public IEnumerable <CategoriesViewModel> GetAll()
 {
     return(_mapper.Map <IEnumerable <CategoriesViewModel> >(_repositorio.GetAll()));
 }
 public IEnumerable <Categories> GetAll()
 {
     return(_repositorio.GetAll());
 }