18 lines
402 B
C#
18 lines
402 B
C#
using CRM.Core.DTO.Res;
|
|
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_CUSTOMERUSER
|
|
{
|
|
bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.RES_CUSTOMERUSER model);
|
|
|
|
int ContractUser(string resid, string username);
|
|
|
|
void Delete(string username, string resid);
|
|
|
|
bool ChangeUserMobile(string resid, ChangeMobile model);
|
|
|
|
}
|
|
}
|