mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +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
|