Fix[BE]: fixing delivery order delet unused repository

This commit is contained in:
aguhh18
2025-11-17 15:15:52 +07:00
parent 09d503f5be
commit 5c25c84f7f
@@ -1,21 +0,0 @@
package repository
import (
entity "gitlab.com/mbugroup/lti-api.git/internal/entities"
"gitlab.com/mbugroup/lti-api.git/internal/common/repository"
"gorm.io/gorm"
)
type DeliveryOrdersRepository interface {
repository.BaseRepository[entity.DeliveryOrders]
}
type DeliveryOrdersRepositoryImpl struct {
*repository.BaseRepositoryImpl[entity.DeliveryOrders]
}
func NewDeliveryOrdersRepository(db *gorm.DB) DeliveryOrdersRepository {
return &DeliveryOrdersRepositoryImpl{
BaseRepositoryImpl: repository.NewBaseRepository[entity.DeliveryOrders](db),
}
}