Added Request/Response mechanism into mtapi. Added structure MtOrder. Added functions GetOrder, GetOrders.

This commit is contained in:
DW
2016-04-22 19:14:47 +03:00
parent 6f8a8728ed
commit 3bec28f817
22 changed files with 2359 additions and 49 deletions
+15
View File
@@ -0,0 +1,15 @@
using System;
namespace MtApi
{
public class MtExecutionException: Exception
{
public MtExecutionException(int errorCode, string message)
:base(message)
{
ErrorCode = errorCode;
}
public int ErrorCode { get; private set; }
}
}