public Dictionary <string, object> GetPatientInsurances(int patientId, TokenModel tokenModel)
 {
     SqlParameter[] parameters = { new SqlParameter("@PatientId", patientId) };
     return(_context.ExecStoredProcedureForPatientInsuranceInsuredPerson(SQLObjects.PAT_GetPatientInsuranceInsuredPerson.ToString(), parameters.Length, parameters));
 }