14 lines
662 B
C#
14 lines
662 B
C#
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_FAVORITECUSTOMER
|
|
{
|
|
bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.CSVR_FAVORITECUSTOMER model, decimal eid, decimal userId);
|
|
bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.CSVR_FAVORITECUSTOMER model, decimal eid, decimal userId);
|
|
bool Delete(ref ValidationErrors errors, decimal id, decimal eid, decimal userId);
|
|
bool GiveUp(ref ValidationErrors errors, decimal id, decimal eid, decimal userId);
|
|
void Change(string id, decimal inneruserId, decimal eid, decimal aeid, decimal userId, string paraKey);
|
|
}
|
|
}
|