示例#1
0
 public async Task <ActionResult <IEnumerable <Category> > > GetList(long _Id)
 {
     return(Ok(await _categoryService.GetList(new DefaultFilter {
         Id = _Id
     })));
 }
示例#2
0
 public async Task <ActionResult <IEnumerable <Seller> > > GetList()
 {
     return(Ok(await _uomService.GetList(null)));
 }
示例#3
0
 public async Task <ActionResult <IEnumerable <Type> > > GetList()
 {
     return(Ok(await _typeService.GetList(null)));
 }