| 15 | } |
| 16 | |
| 17 | type PriceProvider interface { |
| 18 | Code() string |
| 19 | Label() string |
| 20 | Description() string |
| 21 | AutoCompleteFields() []AutoCompleteField |
| 22 | AutoComplete(db *gorm.DB, field string, filter map[string]string) []AutoCompleteItem |
| 23 | ClearCache(db *gorm.DB) |
| 24 | GetPrices(code string, commodityName string) ([]*Price, error) |
| 25 | } |
no outgoing calls
no test coverage detected