using YLErp.Models; namespace YLErp.Abstract.DataProviders { /// /// 客户数据提供 /// public interface IClientDataProvider { /// /// 获取客户主要信息 /// /// 客户ID /// 如果未找到是否抛出异常 ClientMainInfo GetClientInfo(int clientId, bool throwIfNotFound = false); } }