41 lines
950 B
C#
41 lines
950 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SOH.Entities;
|
|
using SOH.Data;
|
|
namespace SOH.BLL
|
|
{
|
|
public interface IFenDian
|
|
{
|
|
/// <summary>
|
|
/// 获取所有分店
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<FenDian> getAllFenDian();
|
|
|
|
/// <summary>
|
|
/// 添加分店
|
|
/// </summary>
|
|
/// <param name="fd"></param>
|
|
/// <returns></returns>
|
|
OperationResult AddFenDian(FenDian fd);
|
|
|
|
/// <summary>
|
|
/// 修改分店信息
|
|
/// </summary>
|
|
/// <param name="fd"></param>
|
|
/// <returns></returns>
|
|
OperationResult Modify(FenDian fd);
|
|
|
|
/// <summary>
|
|
/// 删除一个实体
|
|
/// </summary>
|
|
/// <param name="fd"></param>
|
|
/// <returns></returns>
|
|
OperationResult Delete(FenDian fd);
|
|
|
|
FenDian getFenDianById(int fdid);
|
|
}
|
|
}
|