using System; using System.Collections.Generic; using System.Linq; using System.Text; using SOH.Entities; using SOH.Data; namespace SOH.BLL { public interface IFenDian { /// /// 获取所有分店 /// /// List getAllFenDian(); /// /// 添加分店 /// /// /// OperationResult AddFenDian(FenDian fd); /// /// 修改分店信息 /// /// /// OperationResult Modify(FenDian fd); /// /// 删除一个实体 /// /// /// OperationResult Delete(FenDian fd); FenDian getFenDianById(int fdid); } }