15 lines
298 B
C#
15 lines
298 B
C#
using MyCode.Project.Domain.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Services.IServices
|
|
{
|
|
public interface IOrderPushService
|
|
{
|
|
void PushOrderToKingDee(string id);
|
|
}
|
|
}
|