Issue #16: Added Mt5Expert into MTApiService. Refactored MT5Connector

This commit is contained in:
DW
2017-09-08 12:44:14 +03:00
parent 1f72b2b790
commit c82787473f
8 changed files with 430 additions and 394 deletions
+6 -2
View File
@@ -29,7 +29,7 @@ namespace MTApiService
_mtHadler = mtHandler;
}
public void Deinit()
public virtual void Deinit()
{
Log.Debug("Deinit: begin.");
@@ -119,9 +119,13 @@ namespace MTApiService
Log.Debug("SendEvent: end.");
}
public virtual void SendQuote(MtQuote quote)
public virtual void UpdateQuote(MtQuote quote)
{
Log.DebugFormat("UpdateQuote: begin. quote = {0}", quote);
Quote = quote;
Log.Debug("UpdateQuote: end.");
}
public override string ToString()