public async Task <IActionResult> Count()
 {
     return(new JsonResult(new { WorkoutCount = await _workoutService.GetWorkoutCount() }));
 }