コード例 #1
0
ファイル: Home.cs プロジェクト: JoviDuran/MillerDevExam
 public void FillDataGridViewAppointments()
 {
     dataGridViewAppointments.DataSource = appointmentManager.GetAll();
 }
コード例 #2
0
 public List <Appointment> GetAll()
 {
     return(dal.GetAll());
 }