コード例 #1
0
 public BaseResponse <IEnumerable <AuthorOutputDto> > All([FromHeader] IDictionary <string, string> @params)
 {
     return(_authorService.All(@params));
 }
コード例 #2
0
        public async Task <List <AuthorModel> > All()
        {
            _logger.LogInformation("All Authors Listed");

            return(await _authorService.All());
        }