Beispiel #1
0
 public static bool IdCuentaDisponible(CedForecastWebEntidades.Cuenta Cuenta, CedEntidades.Sesion Sesion)
 {
     if (Cuenta.Id == String.Empty)
     {
         throw new Microsoft.ApplicationBlocks.ExceptionManagement.Validaciones.ValorNoInfo("Id.Usuario");
     }
     else
     {
         try
         {
             CedForecastWebDB.Cuenta cuenta = new CedForecastWebDB.Cuenta(Sesion);
             return cuenta.IdCuentaDisponible(Cuenta);
         }
         catch (Exception ex)
         {
             throw ex;
         }
     }
 }