Versions in this module Expand all Collapse all v1 v1.0.0 Oct 26, 2021 Changes in this version + type IAppointmentRepositoryRead interface + GetByAppointmentNumber func(ctx context.Context, appointment_number string) (domain.Appointment, error) + GetByID func(ctx context.Context, id int64) (domain.Appointment, error) + GetHistoryByAccountID func(ctx context.Context) (domain.Appointment, error) + type IAppointmentRepositoryWrite interface + Delete func(ctx context.Context, appointment_number string) error + Store func(context.Context, *domain.Appointment) error + Update func(ctx context.Context, ar *domain.Appointment) error