using System; using System.Collections.Generic; using Tanshu.Accounts.Contracts; namespace Tanshu.Accounts.DAOFactory { public interface IFoodTableDAO : IDisposable { void Insert(FoodTableBO foodTable); void Update(FoodTableBO foodTable); bool Delete(int tableID); FoodTableBO GetFoodTable(int tableID); List GetFoodTables(); } }