Beispiel #1
0
 public async Task <RawItemMetadata?> DeleteItem(string id, [Service] ItemMetadataServer.ModuleService service)
 {
     return(await service.RemoveItem(id));
 }
Beispiel #2
0
 public async Task <RawCategory?> DeleteCategory(string id, [Service] ItemMetadataServer.ModuleService service)
 {
     return(await service.RemoveCategory(id));
 }
Beispiel #3
0
 public IQueryable <RawCategory> GetCategories([Service] ItemMetadataServer.ModuleService service)
 {
     return(service.QueryAllCategories());
 }
Beispiel #4
0
 public IQueryable <RawTag> GetTags([Service] ItemMetadataServer.ModuleService service)
 {
     return(service.QueryAllTags());
 }
Beispiel #5
0
 public IQueryable <RawItemMetadata> GetItems([Service] ItemMetadataServer.ModuleService service)
 {
     return(service.QueryAllItems());
 }