private void WriteRemindsToGrid() { remindersList = repository.GetReminds(); foreach (var remind in remindersList) { reminderDataGridView.Rows.Add(remind.StartDate, remind.Name, remind.EndDate, remind.Description, remind.Id); } }
public void Refresh() { remindList = repository.GetReminds(); }