コード例 #1
0
 private LikeDTO GetUserLikes(int chapterId, string authorId)
 {
     return(_fabric.CreateChaptersRepository().Get(chapterId).ToModel().Likes.FirstOrDefault(r => r.Author.Id.Equals(authorId)));
 }
コード例 #2
0
 public void Create(ChapterDTO chapter)
 {
     _fabric.CreateChaptersRepository().Create(chapter.ToEntity());
 }