// POST api/tasks
 public TaskModel Post([FromBody] PCRTaskSettingsModel settings)
 {
     return(TaskService.Create(settings));
 }