using System; using System.Collections.Generic; using System.Text; using System.ServiceModel; using System.Data.SqlClient; namespace Tanshu.Accounts.Contracts { public interface IFoodTableBI { void Insert(FoodTableBO foodTable); void Update(FoodTableBO foodTable); bool Delete(int tableID); FoodTableBO GetFoodTable(int tableID); List GetFoodTables(); } }