19 lines
426 B
C#
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();
|
|
}
|
|
}
|