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

19 lines
426 B
C#

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