package service type Staff struct { ID int Name string LastName string PhoneNumber string } type StaffService struct { Staffs []Staff NextID int }