Exemplo n.º 1
0
        public void Create(PostDTO post)
        {
            var entity = post.ToEntity();
            entity.PostedDate = DateTime.Now;

            post.Categories.ForEach(dto =>
            {
                var category = categoryRepository.Retrieve(dto.Id);
                entity.AddCategory(category);
            });

            postRepository.Create(entity);
        }
Exemplo n.º 2
0
 public void Update(PostDTO post)
 {
     throw new NotImplementedException();
 }