mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 13:31:56 +00:00
31 lines
833 B
Go
31 lines
833 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gitlab.com/mbugroup/lti-api.git/internal/common/repository"
|
|
entity "gitlab.com/mbugroup/lti-api.git/internal/entities"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type SupplierRepository interface {
|
|
repository.BaseRepository[entity.Supplier]
|
|
NameExists(ctx context.Context, name string, excludeID *uint) (bool, error)
|
|
}
|
|
|
|
type SupplierRepositoryImpl struct {
|
|
*repository.BaseRepositoryImpl[entity.Supplier]
|
|
db *gorm.DB
|
|
}
|
|
|
|
func NewSupplierRepository(db *gorm.DB) SupplierRepository {
|
|
return &SupplierRepositoryImpl{
|
|
BaseRepositoryImpl: repository.NewBaseRepository[entity.Supplier](db),
|
|
db: db,
|
|
}
|
|
}
|
|
|
|
func (r *SupplierRepositoryImpl) NameExists(ctx context.Context, name string, excludeID *uint) (bool, error) {
|
|
return repository.ExistsByName[entity.Supplier](ctx, r.db, name, excludeID)
|
|
}
|