public IEnumerable <View_Proveedores> GetProveedores() { try { var _Proveedores = _proveedorRepository.GetAll(); return(_Proveedores); } catch (Exception ex) { throw new Exception(ex.Message); } }
public List <Proveedor> GetAll() //READ { /*if (listaProveedores != null && listaProveedores.Count != 0) * { * return listaProveedores; * } * else * { * listaProveedores = proveedorRepository.GetAll().ToList(); * * /*foreach (Cliente x in listaDB) * { * ClienteDTO obj = new ClienteDTO(); * MyMapper.Map(x, obj); * listaClienteDTO.Add(obj); * } * * return listaProveedores; * }*/ return(proveedorRepository.GetAll().ToList()); }
public ActionResult Index() { var model = _proveedorRepository.GetAll(); return(View(model)); }
/// <summary> /// Lista todos los proveedorse /// </summary> /// <returns></returns> public IEnumerable <Proveedor> ListarProveedores() { return(_proveedorRepository.GetAll()); }