Sha256: d3d148375086ecb3b007b47d140b18ee144b94b92d772686af05afa7f08353c3

Contents?: true

Size: 497 Bytes

Versions: 3

Compression:

Stored size: 497 Bytes

Contents

module AUB
  module Payroll
    module SummaryFile
      class CompanyInfo
        include PhModel

        attribute :name
        attribute :account_number
        attribute :address1
        attribute :address2
        attribute :bank_branch

        attribute :prepared_by_name_1
        attribute :prepared_by_name_2
        attribute :checked_by_name_1
        attribute :checked_by_name_2

        validates :name, :account_number, :bank_branch, presence: true

      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
aub-payroll-1.1.0 lib/aub/payroll/summary_file/company_info.rb
aub-payroll-1.0.1 lib/aub/payroll/summary_file/company_info.rb
aub-payroll-1.0.0 lib/aub/payroll/summary_file/company_info.rb