public static MedicineCommentNotificationWindow GetInstance()
 {
     if (_instance == null)
     {
         _instance = new MedicineCommentNotificationWindow();
     }
     return(_instance);
 }
 private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
 {
     _instance = null;
 }