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