()
| 565 | } |
| 566 | |
| 567 | pub async fn get_vendor_count() -> Result<i64, Error> { |
| 568 | Ok(device_profile_vendor::table |
| 569 | .select(dsl::count_star()) |
| 570 | .first(&mut get_async_db_conn().await?) |
| 571 | .await?) |
| 572 | } |
| 573 | |
| 574 | pub async fn list_vendors(limit: i64, offset: i64) -> Result<Vec<Vendor>, Error> { |
| 575 | Ok(device_profile_vendor::table |
no test coverage detected