コード例 #1
0
ファイル: NettingWeightResult.cs プロジェクト: mimax86/Sample
 private int GetDirection(TransferType type)
 {
     if (type.IsExternalBuy())
     {
         return(1);
     }
     if (type.IsExternalSell())
     {
         return(-1);
     }
     return(0);
 }