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

18 lines
524 B
C#

using System.Collections.Generic;
using WX.CRM.Common;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Soft
{
public interface ISOFT_CUSTOMER
{
void CleanSoftCustomer(List<SOFT_CUSTOMER> addList, List<SOFT_CUSTOMER> UpdateList);
bool UpdateList(ref ValidationErrors errors, List<SOFT_CUSTOMER> customer_lists);
void setSoftCustomerSalerId();
void ComputeSoftCustomer(decimal impid);
void ListOfSoftSalerCommit(decimal saleruserid, decimal opuserid, int count);
}
}