using Model.ModelDto; using Model.ModelVm; using System; using System.Collections.Generic; using System.Text; namespace WMS.IBLL.IBllAsnServer { public interface IBllBoxInfoServer { public List GetBoxInfoList(BoxInfoVm model, out int count); public string ImportBoxInfo(BoxInfoVms models); public string AddBoxInfo(BoxInfoVm model); public string DelBoxInfo(BoxInfoVm model); } }