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