コード例 #1
0
        public async Task <IActionResult> GetAllByNumberOfBudgetPlacesAsync()
        {
            var facultyDtos = await _facultyService.GetAllSortedByAmountofBudgetPlacesAsync();

            var response = _facultyResponseComposer.ComposeForGetAllByNumberOfBudgetPlaces(facultyDtos);

            return(response);
        }