14 lines
379 B
C#
14 lines
379 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Model.DTO.wework;
|
|
|
|
namespace WX.CRM.IBLL.WeWork
|
|
{
|
|
public interface IRcontact
|
|
{
|
|
void Rcontact_Set(Rcontact info, string jsontext);
|
|
List<shRcontact> Rcontact_Get(string v_vid);
|
|
void Rcontact_Relate(string remoteid, string vid, string resid);
|
|
void Res_Customer_Relate(string resids);
|
|
}
|
|
}
|