Files
2026-07-16 22:16:45 +07:00

12 lines
446 B
Go

package insurance_patient_data
import "context"
type Repository interface {
Create(ctx context.Context, row *InsurancePatientData) error
Update(ctx context.Context, row *InsurancePatientData) error
Delete(ctx context.Context, id []byte, deletedBy []byte) error
GetByID(ctx context.Context, id []byte) (*InsurancePatientData, error)
List(ctx context.Context, filter, sort string, limit, offset int) ([]InsurancePatientData, int64, error)
}