36 lines
965 B
C#
36 lines
965 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.DAL.WeWork;
|
|
using WX.CRM.IBLL.WeWork;
|
|
using WX.CRM.Model.DTO.wework;
|
|
|
|
namespace WX.CRM.BLL.WeWork
|
|
{
|
|
public class Rcontact_BL : IRcontact
|
|
{
|
|
public void Rcontact_Set(Rcontact info, string jsontext)
|
|
{
|
|
new Rcontact_DAL().Rcontact_Set(info, jsontext);
|
|
}
|
|
/// <summary>
|
|
/// 获取工作微信好友列表
|
|
/// </summary>
|
|
/// <param name="v_vid">企微ID</param>
|
|
/// <returns></returns>
|
|
public List<shRcontact> Rcontact_Get(string v_vid)
|
|
{
|
|
return new Rcontact_DAL().Rcontact_Get(v_vid);
|
|
}
|
|
|
|
|
|
public void Rcontact_Relate(string remoteid, string vid, string resid)
|
|
{
|
|
new Rcontact_DAL().Rcontact_Relate(remoteid, vid, resid);
|
|
|
|
}
|
|
public void Res_Customer_Relate(string resids)
|
|
{
|
|
new Rcontact_DAL().Res_Customer_Relate(resids);
|
|
}
|
|
}
|
|
}
|