2025-10-16 12:55:36 +03:00
|
|
|
package repositories
|
|
|
|
|
2025-10-16 12:57:19 +03:00
|
|
|
import "code.linberg.su/linberg/awesome-back/internal/domain/entities"
|
2025-10-16 12:55:36 +03:00
|
|
|
|
|
|
|
type PastryRepository interface {
|
|
|
|
FindAll() ([]entities.Pastry, error)
|
|
|
|
FindByID(id int) (*entities.Pastry, error)
|
|
|
|
FindByCategory(category string) ([]entities.Pastry, error)
|
|
|
|
}
|