(limit, offset int)
| 286 | } |
| 287 | |
| 288 | func (m *MockDataSource) GetAllBalances(limit, offset int) ([]model.Balance, error) { |
| 289 | args := m.Called(limit, offset) |
| 290 | return args.Get(0).([]model.Balance), args.Error(1) |
| 291 | } |
| 292 | |
| 293 | func (m *MockDataSource) GetAllBalancesWithFilter(ctx context.Context, filters *filter.QueryFilterSet, limit, offset int) ([]model.Balance, error) { |
| 294 | args := m.Called(ctx, filters, limit, offset) |