public async Task <ActionResult <ClientProfileModel> > GetClientFullProfile() => await Exec(async operation =>
 {
     var(_, id)  = VerifyUser(UserRole.Client);
     var profile = await clientProfileService.GetClientFullProfile(operation, id);
     return(new ClientProfileModel().ToModel(profile));
 });