using MyCode.Project.Domain.ZHMDModel; using MyCode.Project.Repositories.Common; using System; using System.Collections.Generic; namespace MyCode.Project.Services { public interface IWMSService { /// /// 把WMS订单存进本地数据库 /// /// void SetWMSOrder(List trades); List GetList(DateTime now); } }