public NCMView(RegisterItem window)
 {
     InitializeComponent();
     _window    = window;
     ncmService = new NCMService();
     LoadGrid();
 }
 public UoMView(RegisterItem window)
 {
     InitializeComponent();
     _window    = window;
     uomService = new UoMService();
     LoadGrid();
 }
 public ItemsSelectedView(RegisterItem window)
 {
     InitializeComponent();
     _window      = window;
     itemsService = new ItemsService();
     ncmService   = new NCMService();
     LoadGrid();
 }