17 lines
503 B
C#
17 lines
503 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.QueryMap;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_IMPORTRES
|
|
{
|
|
void ImpotDt(WX.CRM.Model.Entity.RES_IMPORTRES info, List<string> mobils, int timeOut = 300);
|
|
|
|
void ImpotDt(WX.CRM.Model.Entity.RES_IMPORTRES info, List<RES_IMPORTRESEXT> mobils, int timeOut = 300);
|
|
void BatchRemove(decimal importId);
|
|
bool Delete_IM_Resimportid(ref ValidationErrors errors, decimal id);
|
|
|
|
}
|
|
}
|