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