Example #1
0
 internal Dictionary <DateTime, decimal> GetAccountBalanceDayHistory(Guid accountId, Guid currencyId, DateTime beginTradeDay, DateTime endTradeDay)
 {
     return(DBResetRepository.GetAccountBalanceDayHistory(accountId, currencyId, beginTradeDay, endTradeDay, this.ConnectionString));
 }
Example #2
0
 internal IEnumerable <DB.DBMapping.AccountBalanceDayHistory> GetLastAccountBalanceDayHistory(Guid accountId)
 {
     return(DBResetRepository.GetLastAccountBalanceDayHistory(accountId, this.ConnectionString));
 }