public async Task <IActionResult> AddPlan([FromBody] PlanToAddDto planToAdd) { await _classService.AddPlan(planToAdd); return(Ok()); }