narsil/Tanshu.Accounts.Contracts/Service Contracts/FoodTableBI.cs

19 lines
426 B
C#
Raw Normal View History

2011-01-09 23:36:24 +00:00
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();
}
}