Updates an account
(id string)
| 118 | GetAccountByNumber(number string) (*model.Account, error) // Retrieves an account by its number |
| 119 | UpdateAccount(account *model.Account) error // Updates an account |
| 120 | DeleteAccount(id string) error // Deletes an account |
| 121 | |
| 122 | // Advanced filtering methods |
| 123 | GetAllAccountsWithFilter(ctx context.Context, filters *filter.QueryFilterSet, limit, offset int) ([]model.Account, error) // Retrieves accounts with advanced filtering |
nothing calls this directly
no outgoing calls
no test coverage detected