public MSPresupuesto ObtenerPresupuesto(int Id) { MSPresupuesto FichaCarga = _PresupuestoRepositorio.Get(Id); if (FichaCarga == null) { throw new ValidationException(MENSAJE_NO_DISPONIBLE); } return(FichaCarga); }
public string ObtenerPresupuesto(int Id) { MSPresupuesto model = _PresupuestoRepositorio.Get(Id); if (model == null) { throw new FaultException(MENSAJE_NO_DISPONIBLE); } //return model; return(new JavaScriptSerializer().Serialize(model)); }