示例#1
0
 public TaskResponse(bool success, string message, TaskReminderDTO taskReminderDTO) : base(success, message)
 {
     TaskReminderDTO = taskReminderDTO;
 }
示例#2
0
 public TaskResponse(TaskReminderDTO taskReminderDTO) : this(true, string.Empty, taskReminderDTO)
 {
 }