Пример #1
0
 public DataTable GetCarrerasPorEvento()
 {
     try
     {
         CarreraDA carrDA = new CarreraDA();
         var       res    = carrDA.GetCarrerasPorEvento();
         carrDA = null;
         return(res);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Пример #2
0
 public IList GetAllCarreraByEstatus(Boolean estado)
 {
     try
     {
         CarreraDA carreraDA = new CarreraDA();
         var       res       = carreraDA.GetAllCarreraByEstatus(estado);
         carreraDA = null;
         return(res);
     }
     catch (Exception)
     {
         throw;
     }
 }
Пример #3
0
 public DataTable GetCorredorAutoById(Int32 corredorID, Int32 autoID)
 {
     try
     {
         CarreraDA carreraDA = new CarreraDA();
         var       res       = carreraDA.GetCorredorAutoByID(corredorID, autoID);
         carreraDA = null;
         return(res);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Пример #4
0
 public IList GetAllCarrera()
 {
     try
     {
         CarreraDA carreraDA = new CarreraDA();
         var       res       = carreraDA.GetAllCarrera();
         carreraDA = null;
         return(res);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }