1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-02 13:24:20 +01:00
fab-manager/app/services/product_service.rb
2022-08-03 10:16:36 +02:00

9 lines
125 B
Ruby

# frozen_string_literal: true
# Provides methods for Product
class ProductService
def self.list
Product.all
end
end