public InnovationModel FetchWithInsertOnFail(InnovationModel innovation)
 {
     throw new NotImplementedException();
 }
Esempio n. 2
0
        public IEnumerable <InnovationModel> Get()
        {
            var innovations = _innovationRepository.List();

            return(InnovationModel.Create(innovations));
        }