Пример #1
0
        public MSPresupuesto ObtenerPresupuesto(int Id)
        {
            MSPresupuesto FichaCarga = _PresupuestoRepositorio.Get(Id);

            if (FichaCarga == null)
            {
                throw new ValidationException(MENSAJE_NO_DISPONIBLE);
            }
            return(FichaCarga);
        }
Пример #2
0
        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));
        }