using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
/// 店铺信息表-数据库操作接口
///
public interface IEC_ShopInfoDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据会员编号获得店铺信息
///
/// 会员编号
///
EC_ShopInfo GetModelByMemberId(Guid MemberId);
}
}