14 lines
620 B
C#
14 lines
620 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Soft
|
|
{
|
|
public interface ISOFT_ACTIVE
|
|
{
|
|
bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.SOFT_ACTIVE model);
|
|
bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.SOFT_ACTIVE model);
|
|
bool CreateTrans(ref ValidationErrors errors, WX.CRM.Model.Entity.SOFT_ACTIVE model, List<WX.CRM.Model.Entity.SOFT_ACTIVEMODULE> procuctModule);
|
|
bool UpdateTrans(ref ValidationErrors errors, WX.CRM.Model.Entity.SOFT_ACTIVE model, List<WX.CRM.Model.Entity.SOFT_ACTIVEMODULE> procuctModule);
|
|
}
|
|
}
|