17 lines
487 B
C#
17 lines
487 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_BLACKNUMBER
|
|
{
|
|
CSVR_BLACKNUMBER GetEntity(decimal pkid);
|
|
bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.CSVR_BLACKNUMBER model);
|
|
bool Delete(ref ValidationErrors errors, decimal id);
|
|
bool CreateEntities(ref ValidationErrors errors, List<WX.CRM.Model.Entity.CSVR_BLACKNUMBER> entities);
|
|
|
|
|
|
}
|
|
}
|