public async Task Insert(User user)
 {
     await _userRepo.InsertAsync(user);
 }
 public async Task Insert(Workout workout)
 {
     await _workoutRepo.InsertAsync(workout);
 }