示例#1
0
 public AddItemReport(Item item)
 {
     InitializeComponent();
     _item = item;
     _itemReportManager = new ItemReportManager();
     _itemManager       = new ItemManager();
 }
 public ViewItemReports()
 {
     InitializeComponent();
     _itemReportManager = new ItemReportManager();
 }
示例#3
0
 /// <summary>
 /// Creator: Brandyn T. Coverdill
 /// Created: 2020/04/08
 /// Approver: Dalton Reierson
 /// Approver:  Jesse Tomash
 ///
 /// Constructor for EditItemReports.
 /// </summary>
 ///
 /// <remarks>
 /// Updated By:
 /// Updated:
 /// Update:
 /// </remarks>
 public EditItemReports(ItemReport itemReport)
 {
     _itemReportManager = new ItemReportManager();
     _itemReport        = itemReport;
     InitializeComponent();
 }