public static TMSScholasticGradeRange Get(System.Int64 sgpGradeId) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; TMSScholasticGradeRange instance; instance = new TMSScholasticGradeRange(); db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSScholasticGradeRange_SELECT"; dbCommand = db.GetStoredProcCommand(sqlCommand, sgpGradeId); // Get results. ds = db.ExecuteDataSet(dbCommand); // Verification. if (ds == null || ds.Tables[0].Rows.Count == 0) //throw new ApplicationException("Could not get TMSScholasticGradeRange ID:" + sgpGradeId.ToString()+ " from Database."); // Return results. { return(null); } ds.Tables[0].TableName = TABLE_NAME; instance.MapFrom(ds.Tables[0].Rows[0]); return(instance); }
public static TMSScholasticGradeRange[] Search(System.Int64?sgpGradeId, System.Int64?sgpScholasticGradeId, System.Int32?sgpGradeStartRange, System.Int32?sgpGradeEndRange, System.DateTime?sgpDate, System.Int32?sgpStatus) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSScholasticGradeRange_SEARCH"; dbCommand = db.GetStoredProcCommand(sqlCommand, sgpGradeId, sgpScholasticGradeId, sgpGradeStartRange, sgpGradeEndRange, sgpDate, sgpStatus); ds = db.ExecuteDataSet(dbCommand); ds.Tables[0].TableName = TABLE_NAME; return(TMSScholasticGradeRange.MapFrom(ds)); }
public static TMSScholasticGradeRange[] MapFrom(DataSet ds) { List <TMSScholasticGradeRange> objects; // Initialise Collection. objects = new List <TMSScholasticGradeRange>(); // Validation. if (ds == null) { throw new ApplicationException("Cannot map to dataset null."); } else if (ds.Tables[TABLE_NAME].Rows.Count == 0) { return(objects.ToArray()); } if (ds.Tables[TABLE_NAME] == null) { throw new ApplicationException("Cannot find table [dbo].[TMS_ScholasticGradeRange] in DataSet."); } if (ds.Tables[TABLE_NAME].Rows.Count < 1) { throw new ApplicationException("Table [dbo].[TMS_ScholasticGradeRange] is empty."); } // Map DataSet to Instance. foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows) { TMSScholasticGradeRange instance = new TMSScholasticGradeRange(); instance.MapFrom(dr); objects.Add(instance); } // Return collection. return(objects.ToArray()); }
public static DataSet GetSearch(TMSScholasticGradeRange searchObject) { return GetSearch(searchObject.SGPGradeId, searchObject.SGPScholasticGradeId, searchObject.SGPGradeStartRange, searchObject.SGPGradeEndRange, searchObject.SGPDate, searchObject.SGPStatus); }
public static void Update(TMSScholasticGradeRange tMSScholasticGradeRange, DbTransaction transaction) { tMSScholasticGradeRange.Update(transaction); }
public static void Update(TMSScholasticGradeRange tMSScholasticGradeRange) { tMSScholasticGradeRange.Update(); }
public static TMSScholasticGradeRange[] MapFrom(DataSet ds) { List<TMSScholasticGradeRange> objects; // Initialise Collection. objects = new List<TMSScholasticGradeRange>(); // Validation. if (ds == null) throw new ApplicationException("Cannot map to dataset null."); else if (ds.Tables[TABLE_NAME].Rows.Count == 0) return objects.ToArray(); if (ds.Tables[TABLE_NAME] == null) throw new ApplicationException("Cannot find table [dbo].[TMS_ScholasticGradeRange] in DataSet."); if (ds.Tables[TABLE_NAME].Rows.Count < 1) throw new ApplicationException("Table [dbo].[TMS_ScholasticGradeRange] is empty."); // Map DataSet to Instance. foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows) { TMSScholasticGradeRange instance = new TMSScholasticGradeRange(); instance.MapFrom(dr); objects.Add(instance); } // Return collection. return objects.ToArray(); }
public static TMSScholasticGradeRange Get(System.Int64 sgpGradeId) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; TMSScholasticGradeRange instance; instance = new TMSScholasticGradeRange(); db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSScholasticGradeRange_SELECT"; dbCommand = db.GetStoredProcCommand(sqlCommand, sgpGradeId); // Get results. ds = db.ExecuteDataSet(dbCommand); // Verification. if (ds == null || ds.Tables[0].Rows.Count == 0) //throw new ApplicationException("Could not get TMSScholasticGradeRange ID:" + sgpGradeId.ToString()+ " from Database."); // Return results. return null; ds.Tables[0].TableName = TABLE_NAME; instance.MapFrom( ds.Tables[0].Rows[0] ); return instance; }
public static TMSScholasticGradeRange[] Search(TMSScholasticGradeRange searchObject) { return(Search(searchObject.SGPGradeId, searchObject.SGPScholasticGradeId, searchObject.SGPGradeStartRange, searchObject.SGPGradeEndRange, searchObject.SGPDate, searchObject.SGPStatus)); }