15 lines
339 B
C#
15 lines
339 B
C#
namespace MisPosFD
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[Guid("06FF9559-0B27-47E2-8D3B-74B825011D32")]
|
|
public interface ISocial
|
|
{
|
|
string query(string path);
|
|
string trade(string path, string amount, string orderNo = "");
|
|
string correct(string path, string traceNo);
|
|
}
|
|
}
|
|
|