public InnovationModel FetchWithInsertOnFail(InnovationModel innovation)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
        public IEnumerable <InnovationModel> Get()
        {
            var innovations = _innovationRepository.List();

            return(InnovationModel.Create(innovations));
        }