示例#1
0
        public async Task <List <IAlternativeComparisonModel> > GetByAlternativeIdAsync(Guid alternativeId, int page = 1)
        {
            var alternatives = await _altCompRepo.GetByAlternativesIDAsync(alternativeId, page);

            return(alternatives);
        }