using System;
using System.Collections.Generic;
using WX.CRM.Common;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Soft
{
public interface ISOFT_CUSTOMER_Q
{
WX.CRM.Model.Entity.SOFT_CUSTOMER GetModel(decimal id);
///
/// 获取软件客户列表
///
///
/// 用户名
///
/// 客户ID
/// 用户状态
/// 权限开通日期1
/// 权限开通日期2
/// 权限截止日期1
/// 权限截止日期2
/// 组别
/// 员工
///
List GetList(ref Pager pager, string softName, decimal? saleId, string resId, decimal userStatus, DateTime? optime1, DateTime? optime2, DateTime? endtime1, DateTime? endtime2, string groupId, decimal? inneruserId);
List GetListBySoftName(string[] softName);
///
///
///
///
int SoftCustomerCount();
List getServiceMemo(string[] resid);
}
}