Exemple #1
0
 public bool guardarDB(ro_AjusteImpuestoRenta_Info info)
 {
     try
     {
         return(odata.GuardarBD(info));
     }
     catch (Exception)
     {
         throw;
     }
 }
Exemple #2
0
        private string Validar(ro_AjusteImpuestoRenta_Info info)
        {
            try
            {
                string mensaje = "";
                if (info.lst_det.Count == 0)
                {
                    mensaje = "El detalle debe de tener al menos un registro";
                }

                return(mensaje);
            }
            catch (Exception)
            {
                throw;
            }
        }