narsil/Tanshu.Accounts.Contracts/DAOFactory/FoodTableDAO.cs
2011-01-10 05:06:24 +05:30

15 lines
398 B
C#

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<FoodTableBO> GetFoodTables();
}
}