public static TMSSkillType Get(System.Int64 stSkillId) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; TMSSkillType instance; instance = new TMSSkillType(); db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSSkillType_SELECT"; dbCommand = db.GetStoredProcCommand(sqlCommand, stSkillId); // Get results. ds = db.ExecuteDataSet(dbCommand); // Verification. if (ds == null || ds.Tables[0].Rows.Count == 0) { throw new ApplicationException("Could not get TMSSkillType ID:" + stSkillId.ToString() + " from Database."); } // Return results. ds.Tables[0].TableName = TABLE_NAME; instance.MapFrom(ds.Tables[0].Rows[0]); return(instance); }
public static TMSSkillType[] Search(System.Int64?stSkillId, System.Int64?stSchoolId, System.String stSkillName, System.String stSkillDescription, System.String stExtra, System.DateTime?stDate, System.Int32?stStatus) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSSkillType_SEARCH"; dbCommand = db.GetStoredProcCommand(sqlCommand, stSkillId, stSchoolId, stSkillName, stSkillDescription, stExtra, stDate, stStatus); ds = db.ExecuteDataSet(dbCommand); ds.Tables[0].TableName = TABLE_NAME; return(TMSSkillType.MapFrom(ds)); }
public static TMSSkillType[] MapFrom(DataSet ds) { List <TMSSkillType> objects; // Initialise Collection. objects = new List <TMSSkillType>(); // 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_CoScholasticSkillType] in DataSet."); } if (ds.Tables[TABLE_NAME].Rows.Count < 1) { throw new ApplicationException("Table [dbo].[TMS_CoScholasticSkillType] is empty."); } // Map DataSet to Instance. foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows) { TMSSkillType instance = new TMSSkillType(); instance.MapFrom(dr); objects.Add(instance); } // Return collection. return(objects.ToArray()); }
public static TMSSkillType[] MapFrom(DataSet ds) { List<TMSSkillType> objects; // Initialise Collection. objects = new List<TMSSkillType>(); // 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_CoScholasticSkillType] in DataSet."); if (ds.Tables[TABLE_NAME].Rows.Count < 1) throw new ApplicationException("Table [dbo].[TMS_CoScholasticSkillType] is empty."); // Map DataSet to Instance. foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows) { TMSSkillType instance = new TMSSkillType(); instance.MapFrom(dr); objects.Add(instance); } // Return collection. return objects.ToArray(); }
public static TMSSkillType Get(System.Int64 stSkillId) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; TMSSkillType instance; instance = new TMSSkillType(); db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSSkillType_SELECT"; dbCommand = db.GetStoredProcCommand(sqlCommand, stSkillId); // Get results. ds = db.ExecuteDataSet(dbCommand); // Verification. if (ds == null || ds.Tables[0].Rows.Count == 0) throw new ApplicationException("Could not get TMSSkillType ID:" + stSkillId.ToString()+ " from Database."); // Return results. ds.Tables[0].TableName = TABLE_NAME; instance.MapFrom( ds.Tables[0].Rows[0] ); return instance; }