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