public async Task <ApiResult <List <ChainResult> > > List() { var result = await _chainService.GetAllChains(); return(new ApiResult <List <ChainResult> >(result)); }
public ApiResult <List <ChainResult> > List() { var result = _chainService.GetAllChains(); return(new ApiResult <List <ChainResult> >(result)); }