public void CreateComment(Comment newComment) { var newEntity = Mapper.MapComments(newComment); _context.Add(newEntity); _context.SaveChanges(); }
public void CreatePost(Post post) { _context.Add(Mapper.MapPosts(post)); }