public Task <Dealer> GetDealerByTotalBalance(decimal totalBalance) { try { return(_repository.GetDealerByTotalBalance(totalBalance)); } catch (Exception ex) { _logger.LogError(ex, ex.Message); throw ex; } }