Blog.Logic.Core.CommentsLogic.CommentsLogic C# (CSharp) 메소드

CommentsLogic() 공개 메소드

public CommentsLogic ( ICommentRepository commentRepository, IUserRepository userRepository ) : System
commentRepository ICommentRepository
userRepository IUserRepository
리턴 System
        public CommentsLogic(ICommentRepository commentRepository, IUserRepository userRepository)
        {
            _commentRepository = commentRepository;
            _userRepository = userRepository;
        }