📄 icontacter.cs
字号:
namespace PowerEasy.IDal.Crm
{
using PowerEasy.Model.Crm;
using System;
using System.Collections.Generic;
public interface IContacter
{
bool Add(ContacterInfo contacterInfo);
bool Delete(string contacterId);
bool DeleteByUserName(string userName);
bool Exists(int contacterId);
bool Exists(string userName);
IList<ContacterInfo> GetAllMobileContacters();
ContacterInfo GetContacterByClientId(int clientId);
ContacterInfo GetContacterById(int contacterId);
ContacterInfo GetContacterByUserName(string userName);
Dictionary<int, string> GetContacterListByClientId(int clientId);
IList<ContacterInfo> GetList(int startRowIndexId, int maxNumberRows, int searchType, string keyword);
int GetMaxId();
IList<ContacterInfo> GetMobileContacterByGroupId(string groupId);
IList<ContacterInfo> GetMobileContacterByRegion(string country, string province, string city);
IList<ContacterInfo> GetMobileContacterByTrueName(string trueName);
IList<ContacterInfo> GetMobileContacterByUserId(int startId, int endId);
IList<ContacterInfo> GetMobileContacterByUserName(string userName);
int GetTotalOfContacter();
bool Update(ContacterInfo contacterInfo);
bool UpdateClientForSameCompany(int clientId, int companyId);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -