using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Soft { public interface ISOFT_ACTIVEORDER { bool CreateOrder(decimal productid, string resid, string username, decimal companyid, decimal salesid, int ordertype); bool UpdateOrder(ref ValidationErrors errors, SOFT_ACTIVEORDER order); string deleteOrder(ref ValidationErrors errors, decimal orderId); bool BatchUpdateVip(decimal orderid, string username); bool updatewebOrder(decimal orderid, string WEBORDERID); } }