public static TMSSchoolCategory Get(System.Int64 scCategoryId) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; TMSSchoolCategory instance; instance = new TMSSchoolCategory(); db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSSchoolCategory_SELECT"; dbCommand = db.GetStoredProcCommand(sqlCommand, scCategoryId); // Get results. ds = db.ExecuteDataSet(dbCommand); // Verification. if (ds == null || ds.Tables[0].Rows.Count == 0) { throw new ApplicationException("Could not get TMSSchoolCategory ID:" + scCategoryId.ToString() + " from Database."); } // Return results. ds.Tables[0].TableName = TABLE_NAME; instance.MapFrom(ds.Tables[0].Rows[0]); return(instance); }
public static TMSSchoolCategory[] Search(System.Int64?scCategoryId, System.String scCategoryName, System.String scSchoolType, System.DateTime?scDate, System.Int32?scStatus) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSSchoolCategory_SEARCH"; dbCommand = db.GetStoredProcCommand(sqlCommand, scCategoryId, scCategoryName, scSchoolType, scDate, scStatus); ds = db.ExecuteDataSet(dbCommand); ds.Tables[0].TableName = TABLE_NAME; return(TMSSchoolCategory.MapFrom(ds)); }
public static TMSSchoolCategory[] MapFrom(DataSet ds) { List <TMSSchoolCategory> objects; // Initialise Collection. objects = new List <TMSSchoolCategory>(); // 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_SchoolCategory] in DataSet."); } if (ds.Tables[TABLE_NAME].Rows.Count < 1) { throw new ApplicationException("Table [dbo].[TMS_SchoolCategory] is empty."); } // Map DataSet to Instance. foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows) { TMSSchoolCategory instance = new TMSSchoolCategory(); instance.MapFrom(dr); objects.Add(instance); } // Return collection. return(objects.ToArray()); }
public static TMSSchoolCategory[] MapFrom(DataSet ds) { List<TMSSchoolCategory> objects; // Initialise Collection. objects = new List<TMSSchoolCategory>(); // 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_SchoolCategory] in DataSet."); if (ds.Tables[TABLE_NAME].Rows.Count < 1) throw new ApplicationException("Table [dbo].[TMS_SchoolCategory] is empty."); // Map DataSet to Instance. foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows) { TMSSchoolCategory instance = new TMSSchoolCategory(); instance.MapFrom(dr); objects.Add(instance); } // Return collection. return objects.ToArray(); }
public static TMSSchoolCategory Get(System.Int64 scCategoryId) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; TMSSchoolCategory instance; instance = new TMSSchoolCategory(); db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSSchoolCategory_SELECT"; dbCommand = db.GetStoredProcCommand(sqlCommand, scCategoryId); // Get results. ds = db.ExecuteDataSet(dbCommand); // Verification. if (ds == null || ds.Tables[0].Rows.Count == 0) throw new ApplicationException("Could not get TMSSchoolCategory ID:" + scCategoryId.ToString()+ " from Database."); // Return results. ds.Tables[0].TableName = TABLE_NAME; instance.MapFrom( ds.Tables[0].Rows[0] ); return instance; }