예제 #1
0
				public BEClients SelectAllInactive()
				{
					BEClients ds = new BEClients();
					DAClients da = new DAClients();
					da.SelectAllInactive((DataTable)ds.tbl_Clients);
					return ds;
				}
예제 #2
0
				public BEClients SelectClientByID(int ClientID)
				{
					BEClients ds = new BEClients();
					DAClients da = new DAClients();
		
					da.SelectByID(ClientID.ToString(), (DataTable)ds.tbl_Clients);
					return ds;
				}
예제 #3
0
				public void Update(BEClients ds)
				{
					DAClients da = new DAClients();
					da.Update((DataTable)ds.tbl_Clients);
				}