using System.Collections.Generic; using System.Linq; using Domain; namespace Infrastructure.Repositories.Memory { public class CommentRepository : ICommentRepository { public List Comments { get; } public CommentRepository(params Comment[] comments) { Comments = comments.ToList(); } public void Add(Comment comment) { Comments.Add(comment); } } }