private long GetFromId() { long max = 1; try { max = repository.Get(pair).ToList().Max(x => x.TradeId) + 1; } catch (Exception ex) { // запись лога в ДБ //throw ex; } return(max); }
private IEnumerable <TradeHistory> GetTades(string pair, long startTradeId, long stopTradeId) { return(tradeHistoryRepository.Get(pair, startTradeId, stopTradeId)); }