Ejemplo n.º 1
0
				public BEClients SelectAllInactive()
				{
					BEClients ds = new BEClients();
					DAClients da = new DAClients();
					da.SelectAllInactive((DataTable)ds.tbl_Clients);
					return ds;
				}
Ejemplo n.º 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;
				}
Ejemplo n.º 3
0
				public void Update(BEClients ds)
				{
					DAClients da = new DAClients();
					da.Update((DataTable)ds.tbl_Clients);
				}