ComplianceServer/oldcode/Core.BLL/EventBus/Events/CloseFreeOrderEvent.cs

20 lines
448 B
C#

using CRM.Core.Common.EventBus;
namespace CRM.Core.BLL.EventBus.Events
{
public class CloseFreeOrderEvent : IEvent
{
public CloseFreeOrderEvent()
{
}
public CloseFreeOrderEvent(string webOrderId, string deptCode)
{
WebOrderId = webOrderId;
DeptCode = deptCode;
}
public string WebOrderId { get; set; }
public string DeptCode { get; set; }
}
}