module FFaker::CompanyJA

def name

def name
  case rand(0..2)
  when 0 then "#{NameJA.last_name}#{fetch_sample(TYPES)}"
  when 1 then "#{fetch_sample(TYPES)}#{NameJA.last_name}"
  when 2 then "#{NameJA.last_name}#{fetch_sample(DETAILED_TYPES)}"
  end
end

def position

def position
  fetch_sample(POSITIONS)
end