public static TMSLogHistory Get(System.Int64 lhHistoryId) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; TMSLogHistory instance; instance = new TMSLogHistory(); db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSLogHistory_SELECT"; dbCommand = db.GetStoredProcCommand(sqlCommand, lhHistoryId); // Get results. ds = db.ExecuteDataSet(dbCommand); // Verification. if (ds == null || ds.Tables[0].Rows.Count == 0) { throw new ApplicationException("Could not get TMSLogHistory ID:" + lhHistoryId.ToString() + " from Database."); } // Return results. ds.Tables[0].TableName = TABLE_NAME; instance.MapFrom(ds.Tables[0].Rows[0]); return(instance); }
public static TMSLogHistory[] Search(System.Int64?lhHistoryId, System.Int64?lhFacultyLoginId, System.String lhLoginType, System.String lhLogType, System.String lhActivityDo, System.DateTime?lhStartTime, System.DateTime?lhEndTime, System.Int64?lhAddedById, System.DateTime?lhDate, System.Int32?lhStatus) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSLogHistory_SEARCH"; dbCommand = db.GetStoredProcCommand(sqlCommand, lhHistoryId, lhFacultyLoginId, lhLoginType, lhLogType, lhActivityDo, lhStartTime, lhEndTime, lhAddedById, lhDate, lhStatus); ds = db.ExecuteDataSet(dbCommand); ds.Tables[0].TableName = TABLE_NAME; return(TMSLogHistory.MapFrom(ds)); }
public static TMSLogHistory[] MapFrom(DataSet ds) { List <TMSLogHistory> objects; // Initialise Collection. objects = new List <TMSLogHistory>(); // 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_LogHistory] in DataSet."); } if (ds.Tables[TABLE_NAME].Rows.Count < 1) { throw new ApplicationException("Table [dbo].[TMS_LogHistory] is empty."); } // Map DataSet to Instance. foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows) { TMSLogHistory instance = new TMSLogHistory(); instance.MapFrom(dr); objects.Add(instance); } // Return collection. return(objects.ToArray()); }
public static TMSLogHistory[] MapFrom(DataSet ds) { List<TMSLogHistory> objects; // Initialise Collection. objects = new List<TMSLogHistory>(); // 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_LogHistory] in DataSet."); if (ds.Tables[TABLE_NAME].Rows.Count < 1) throw new ApplicationException("Table [dbo].[TMS_LogHistory] is empty."); // Map DataSet to Instance. foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows) { TMSLogHistory instance = new TMSLogHistory(); instance.MapFrom(dr); objects.Add(instance); } // Return collection. return objects.ToArray(); }
public static TMSLogHistory Get(System.Int64 lhHistoryId) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; TMSLogHistory instance; instance = new TMSLogHistory(); db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSLogHistory_SELECT"; dbCommand = db.GetStoredProcCommand(sqlCommand, lhHistoryId); // Get results. ds = db.ExecuteDataSet(dbCommand); // Verification. if (ds == null || ds.Tables[0].Rows.Count == 0) throw new ApplicationException("Could not get TMSLogHistory ID:" + lhHistoryId.ToString()+ " from Database."); // Return results. ds.Tables[0].TableName = TABLE_NAME; instance.MapFrom( ds.Tables[0].Rows[0] ); return instance; }