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