mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-20 14:54:15 +01:00
9 lines
125 B
Ruby
9 lines
125 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Provides methods for Product
|
|
class ProductService
|
|
def self.list
|
|
Product.all
|
|
end
|
|
end
|