Example #1
0
				public BEGalleryRecords SelectWithROColumns()
				{
					BEGalleryRecords ds = new BEGalleryRecords();
					DAGalleryRecords da = new DAGalleryRecords();
					da.SelectWithROColumns((DataTable)ds.tbl_GalleryRecords);
					return ds;
				}
Example #2
0
				public BEGalleryRecords SelectAllInactive()
				{
					BEGalleryRecords ds = new BEGalleryRecords();
					DAGalleryRecords da = new DAGalleryRecords();
					da.SelectAllInactive((DataTable)ds.tbl_GalleryRecords);
					return ds;
				}
Example #3
0
				public BEGalleryRecords SelectGalleryRecordByID(int GalleryRecordID)
				{
					BEGalleryRecords ds = new BEGalleryRecords();
					DAGalleryRecords da = new DAGalleryRecords();
		
					da.SelectByID(GalleryRecordID.ToString(), (DataTable)ds.tbl_GalleryRecords);
					return ds;
				}
Example #4
0
				public void Update(BEGalleryRecords ds)
				{
					DAGalleryRecords da = new DAGalleryRecords();
					da.Update((DataTable)ds.tbl_GalleryRecords);
				}