public SurgicalBlocks()
        {
            this.m_SurgicalBillingItemCollection = new YellowstonePathology.Business.Surgical.SurgicalBillingItemCollection();
            m_Date = DateTime.Today;
            DataContext = this;

            InitializeComponent();
        }
Esempio n. 2
0
        public SurgicalBlocks()
        {
            this.m_SurgicalBillingItemCollection = new YellowstonePathology.Business.Surgical.SurgicalBillingItemCollection();
            m_Date      = DateTime.Today;
            DataContext = this;

            InitializeComponent();
        }
Esempio n. 3
0
 private void DatePicker_SelectedDateChanged(object sender, SelectionChangedEventArgs e)
 {
     if (this.BlockDatePicker.SelectedDate.HasValue)
     {
         //YellowstonePathology.Business.Persistence.DocumentGateway.Instance.SubmitChanges(this.m_SurgicalBillingItemCollection, false);
         this.m_Date = this.BlockDatePicker.SelectedDate.Value;
         this.m_SurgicalBillingItemCollection = YellowstonePathology.Business.Gateway.AccessionOrderGateway.GetSurgicalBillingItemCollectionByDate(m_Date);
         this.NotifyPropertyChanged("SurgicalBillingItemCollection");
     }
 }
 private void DatePicker_SelectedDateChanged(object sender, SelectionChangedEventArgs e)
 {
     if (this.BlockDatePicker.SelectedDate.HasValue)
     {
         //YellowstonePathology.Business.Persistence.DocumentGateway.Instance.SubmitChanges(this.m_SurgicalBillingItemCollection, false);
         this.m_Date = this.BlockDatePicker.SelectedDate.Value;
         this.m_SurgicalBillingItemCollection = YellowstonePathology.Business.Gateway.AccessionOrderGateway.GetSurgicalBillingItemCollectionByDate(m_Date);
         this.NotifyPropertyChanged("SurgicalBillingItemCollection");
     }
 }