using Diligent.WebAPI.Contracts.DTOs.Comment; namespace Diligent.WebAPI.Business.Services.Interfaces { public interface ICommentService { Task CreateComment(CommentCreateDto commentCreateDto); } }