public Response <List <UnidadMedida> > GetAll() { Response <List <UnidadMedida> > response = new Response <List <UnidadMedida> >(); try { response.Value = unidadMedidaRepository.GetAll(); return(response); } catch (Exception e) { return(response.Error(e.Message)); } }
public IEnumerable <UnidadMedidaIdNomViewModel> GetUnidadMedidaViews(Int32 id) { UnidadMedidaRepository repos = new UnidadMedidaRepository(); return(repos.GetAll().OrderBy(x => x.Nombre).Where(x => x.Eliminado == false && x.Id != id).Select(x => new UnidadMedidaIdNomViewModel { Id = x.Id, Nombre = x.Nombre })); }
public void CargarDatos() { data = repo.GetAll().ToList(); }