예제 #1
0
파일: BPHub.cs 프로젝트: alexan1/marketweb
		public BEHub SelectAllInactive()
		{
			BEHub ds = new BEHub();
			DAHub da = new DAHub();
			da.SelectAllInactive(ds.tbl_Hub);
			return ds;
		}
예제 #2
0
파일: BPHub.cs 프로젝트: alexan1/marketweb
		public BEHub SelectHubByID(int HubID)
		{
			BEHub ds = new BEHub();
			DAHub da = new DAHub();

			da.SelectByID(HubID.ToString(), ds.tbl_Hub);
			return ds;
		}
예제 #3
0
파일: BPHub.cs 프로젝트: alexan1/marketweb
		public void Update(BEHub ds)
		{
			DAHub da = new DAHub();
			da.Update(ds.tbl_Hub);
		}