public override void Populate(object filter)
        {
            _SelectedPatientBE = (PatientBE)filter;

            ///Retrive
            appointmentListBindingSource.DataSource = ServiceCalls.RetrivePatientAppoinments(_SelectedPatientBE.PatientId, System.DateTime.Now, null);

            this.uc_PatientCard1.Populate(filter);
        }