TG.WXCRM.V4/IBLL/Soft/ISOFT_ACTIVEORDER.cs

16 lines
543 B
C#

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);
}
}