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

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