Exemple #1
0
 public int AddComment(ITask task, int CommentForId, int ID, string Comment, int UserID)
 {
     _TaskRepository = task;
     return(_TaskRepository.AddComment(CommentForId, ID, Comment, UserID));
 }