Esempio n. 1
0
        public void CreateComment(Comment newComment)
        {
            var newEntity = Mapper.MapComments(newComment);

            _context.Add(newEntity);
            _context.SaveChanges();
        }
Esempio n. 2
0
 public void CreatePost(Post post)
 {
     _context.Add(Mapper.MapPosts(post));
 }