This is the first challenge of the free code camp course. Here I'll be using HTML with Bootstrap to build a tribute page for beagles.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using LifeTracker.Dto; | |
using LifeTracker.Models; | |
namespace LifeTracker.Services; | |
public class InMemoryQuestionnaireService : IQuestionnaireService | |
{ | |
List<Questionnaire> _questionnaires { get; } = new List<Questionnaire>(); | |
public InMemoryQuestionnaireService() | |
{ |