# frozen_string_literal: true

class Cna < ActiveRecord::Base
  def self.find_by_cna_id(cna_id)
    find_by(cna_id: cna_id)
  end
end