20 lines
551 B
C#
20 lines
551 B
C#
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_SALESGROUP
|
|
{
|
|
bool Create_ResSalesGroup(ref ValidationErrors errors, RES_SALESGROUP model);
|
|
bool Update_ResSalesGroup(ref ValidationErrors errors, RES_SALESGROUP model);
|
|
bool Delete_ResSalesGroup(ref ValidationErrors errors, decimal id);
|
|
}
|
|
|
|
public class SaleGroupView
|
|
{
|
|
public int ID { get; set; }
|
|
public string GroupName { get; set; }
|
|
public string GroupType { get; set; }
|
|
}
|
|
}
|