module FFaker::SSNMX

def imss

"AABBCCDDEE-F".
is a eleven-digit number in the format
(Instituto Mexicano del Seguro Social)
The Social Security number from IMSS
http://es.wikipedia.org/wiki/Instituto_Mexicano_del_Seguro_Social
def imss
  FFaker.numerify('##########-#')
end

def imss_undashed

"AABBCCDDEEF".
is a eleven-digit number in the format
(Instituto Mexicano del Seguro Social)
The Social Security number from IMSS
http://es.wikipedia.org/wiki/Instituto_Mexicano_del_Seguro_Social
def imss_undashed
  FFaker.numerify('###########')
end

def issste

"AABBCCDDEE-F".
is a eleven-digit number in the format
(Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado)
The Social Security number from ISSSTE
http://es.wikipedia.org/wiki/Instituto_de_Seguridad_y_Servicios_Sociales_de_los_Trabajadores_del_Estado
def issste
  FFaker.numerify('##########-#')
end

def issste_undashed

"AABBCCDDEEF".
is a eleven-digit number in the format
(Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado)
The Social Security number from ISSSTE
http://es.wikipedia.org/wiki/Instituto_de_Seguridad_y_Servicios_Sociales_de_los_Trabajadores_del_Estado
def issste_undashed
  FFaker.numerify('###########')
end

def ssn

"AABBCCDDEE-F".
The Social Security number is a eleven-digit number in the format
def ssn
  FFaker.numerify('##########-#')
end

def ssn_undashed

"AABBCCDDEEF".
The Social Security number is a eleven-digit number in the format
def ssn_undashed
  FFaker.numerify('###########')
end