예제 #1
0
        public ActionResult <List <FeedbackOutputModel> > GetProcessedFeedbacks()
        {
            Mapper           mapper    = new Mapper();
            AuthorDataAccess feedbacks = new AuthorDataAccess();

            return(Ok(mapper.ConvertFeedbackDTOToFeedbackModelList(feedbacks.GetProcessedFeedbacks())));
        }