コード例 #1
0
ファイル: PostServices.cs プロジェクト: GuiNigri/Rede_Social
 public PostServices(IPostRepository postRepository, IBlobServices blobServices, ICommentPostRepository commentPostRepository, ILikePostRepository likePostRepository) : base(postRepository)
 {
     _postRepository        = postRepository;
     _blobServices          = blobServices;
     _commentPostRepository = commentPostRepository;
     _likePostRepository    = likePostRepository;
 }
コード例 #2
0
 public CommentPostServices(ICommentPostRepository commentPostRepository) : base(commentPostRepository)
 {
     _commentPostRepository = commentPostRepository;
 }