Browse Source

MarketAccount

- refactoring
Alexey Kim 2 tuần trước cách đây
mục cha
commit
ea1006bbb1
1 tập tin đã thay đổi với 4 bổ sung2 xóa
  1. 4 2
      market_account.go

+ 4 - 2
market_account.go

@@ -2,8 +2,10 @@ package sentio
 
 type MarketAccount interface {
 	GetId() string
+
 	GetName() string
 
-	Cash() (float64, error)
-	Equity() (float64, error)
+	GetCash() float64
+	
+	GetEquity() float64
 }