Ejemplo n.º 1
0
        public DataTable extractCategorySport(string storedProcedureName, string sport, string category, int logIdUser, DateTime prmStartDate, DateTime prmEndDate, int descriptionType)
        {
            DataAccess.MLB theMLB = new DataAccess.MLB();
            //return theMLB.extractExotics(storedProcedureName, sport, "Exotics", logIdUser, prmStartDate.ToString(), prmEndDate.ToString());

            return(theMLB.extractCategorySport(storedProcedureName, sport, category, "", logIdUser, prmStartDate.ToString(), prmEndDate.ToString(), descriptionType));
        }
Ejemplo n.º 2
0
        public DataTable extractTotal1QCanadianFootball(string storedProcedureName, string sport, string category, int logIdUser, DateTime prmStartDate, DateTime prmEndDate)
        {
            DataAccess.MLB theMLB = new DataAccess.MLB();
            //return theMLB.extractExotics(storedProcedureName, sport, "Exotics", logIdUser, prmStartDate.ToString(), prmEndDate.ToString());

            return(theMLB.extractCategorySport(storedProcedureName, sport, category, "", logIdUser, prmStartDate.ToString(), prmEndDate.ToString(), 2));
        }
Ejemplo n.º 3
0
 public DataTable extractFieldsFromLeague(string storedProcedureName, int logIdUser, string league, DateTime prmStartDate, DateTime prmEndDate, int qLines)
 {
     DataAccess.MLB theMLB = new DataAccess.MLB();
     return(theMLB.extractMlSpTotalFields(storedProcedureName, logIdUser, league, prmStartDate.ToString(), prmEndDate.ToString(), qLines));
 }
Ejemplo n.º 4
0
 public DataTable extractFields(string storedProcedureName, int logIdUser, DateTime prmStartDate, DateTime prmEndDate)
 {
     DataAccess.MLB theMLB = new DataAccess.MLB();
     return(theMLB.extractFields(storedProcedureName, logIdUser, prmStartDate.ToString(), prmEndDate.ToString()));
 }
Ejemplo n.º 5
0
 public DataTable sumOfDatatable(DataTable leagueDt, string leagueName)
 {
     DataAccess.MLB theMLB = new DataAccess.MLB();
     return(theMLB.extractTotalAmountLeague(leagueDt, leagueName));
 }