16 lines
337 B
C#
16 lines
337 B
C#
using WX.CRM.Common;
|
|
using WX.CRM.DAL.QQ;
|
|
using WX.CRM.IBLL.QQ;
|
|
using WX.CRM.Model.DTO;
|
|
|
|
namespace WX.CRM.BLL.QQ
|
|
{
|
|
public class QQ_Message_Bl : IQQ_Message
|
|
{
|
|
public void AddMessage(qq_message info, ref ValidationErrors errors)
|
|
{
|
|
new QQ_Message_Dal().AddMessage(info, ref errors);
|
|
}
|
|
}
|
|
}
|