Account methods
(account model.Account)
| 338 | // Account methods |
| 339 | |
| 340 | func (m *MockDataSource) CreateAccount(account model.Account) (model.Account, error) { |
| 341 | args := m.Called(account) |
| 342 | return args.Get(0).(model.Account), args.Error(1) |
| 343 | } |
| 344 | |
| 345 | func (m *MockDataSource) GetAccountByID(id string, include []string) (*model.Account, error) { |
| 346 | args := m.Called(id, include) |