data_importer/app/models/cna.rb

8 lines
134 B
Ruby
Raw Normal View History

2022-04-19 02:37:27 -05:00
# frozen_string_literal: true
2022-04-07 18:15:21 -05:00
class Cna < ActiveRecord::Base
def self.find_by_cna_id(cna_id)
2022-04-19 02:37:27 -05:00
find_by(cna_id: cna_id)
2022-04-07 18:15:21 -05:00
end
end