Exemplo n.º 1
0
 public UCLeftBatchForm()
 {
     InitializeComponent();
     mObjAuctionsFactory  = new AuctionsServicesFactory();
     mObjInventoryFactory = new InventoryServicesFactory();
     mObjBusinessFactory  = new BusinessServicesFactory();
 }
Exemplo n.º 2
0
 public UCGoodsReceipt()
 {
     InitializeComponent();
     mObjInventoryServicesFactory = new InventoryServicesFactory();
     mObjBusinessServicesFactory  = new BusinessServicesFactory();
     mObjAuction = mObjAuctionServicesFactory.GetAuctionService().GetActiveAuction();
 }
Exemplo n.º 3
0
 public UCGoodsReturns()
 {
     mObjAuctionsServicesFactory  = new AuctionsServicesFactory();
     mObjInventoryServicesFactory = new InventoryServicesFactory();
     mObjBusinessServicesFactory  = new BusinessServicesFactory();
     InitializeComponent();
 }
Exemplo n.º 4
0
 public UCSkipBatch(long pLonAuctionId)
 {
     InitializeComponent();
     mObjAuctionsFactory  = new AuctionsServicesFactory();
     mObjInventoryFactory = new InventoryServicesFactory();
     mLonAuctionId        = pLonAuctionId;
 }
Exemplo n.º 5
0
        public UCPrintBatch(Batch pObjBatch)
        {
            mObjAuctionsFactory  = new AuctionsServicesFactory();
            mObjBusinessFactory  = new BusinessServicesFactory();
            mObjInventoryFactory = new InventoryServicesFactory();

            InitializeComponent();
            LoadData(pObjBatch);
            CreateDocument();
        }
Exemplo n.º 6
0
        public UCSearchItemType(string pStrText, List <ItemType> pLstObjItemTypes, FilterEnum pEnmFilter)
        {
            InitializeComponent();
            mObjInventoryServicesFactory = new InventoryServicesFactory();

            if (!string.IsNullOrEmpty(pStrText))
            {
                txtSearch.Text = pStrText;
                txtSearch.Focus();
            }
            else
            {
                dgDataGrid.Focus();
            }

            mLcvListData           = new ListCollectionView(pLstObjItemTypes);
            dgDataGrid.ItemsSource = null;
            dgDataGrid.ItemsSource = mLcvListData;
            mEnmFilter             = pEnmFilter;
        }
Exemplo n.º 7
0
 public UCSearchItemType()
 {
     InitializeComponent();
     mObjInventoryServicesFactory = new InventoryServicesFactory();
 }
Exemplo n.º 8
0
 public UCQuantitiesDetail()
 {
     InitializeComponent();
     mObjAuctionsServices  = new AuctionsServicesFactory();
     mObjInventoryServices = new InventoryServicesFactory();
 }