module FFaker::PhoneNumberRU

def build_phone_number(country_code, prefix)


Build phone number by country_code and prefix
def build_phone_number(country_code, prefix)
  "#{country_code} #{prefix} #{FFaker.numerify('###-##-##')}"
end