コード例 #1
0
 public UCLeftBatchForm()
 {
     InitializeComponent();
     mObjAuctionsFactory  = new AuctionsServicesFactory();
     mObjInventoryFactory = new InventoryServicesFactory();
     mObjBusinessFactory  = new BusinessServicesFactory();
 }
コード例 #2
0
ファイル: UCGoodsReceipt.xaml.cs プロジェクト: xavl369/UGRS
 public UCGoodsReceipt()
 {
     InitializeComponent();
     mObjInventoryServicesFactory = new InventoryServicesFactory();
     mObjBusinessServicesFactory  = new BusinessServicesFactory();
     mObjAuction = mObjAuctionServicesFactory.GetAuctionService().GetActiveAuction();
 }
コード例 #3
0
ファイル: UCGoodsReturns.xaml.cs プロジェクト: xavl369/UGRS
 public UCGoodsReturns()
 {
     mObjAuctionsServicesFactory  = new AuctionsServicesFactory();
     mObjInventoryServicesFactory = new InventoryServicesFactory();
     mObjBusinessServicesFactory  = new BusinessServicesFactory();
     InitializeComponent();
 }
コード例 #4
0
ファイル: UCSkipBatch.xaml.cs プロジェクト: xavl369/UGRS
 public UCSkipBatch(long pLonAuctionId)
 {
     InitializeComponent();
     mObjAuctionsFactory  = new AuctionsServicesFactory();
     mObjInventoryFactory = new InventoryServicesFactory();
     mLonAuctionId        = pLonAuctionId;
 }
コード例 #5
0
        public UCPrintBatch(Batch pObjBatch)
        {
            mObjAuctionsFactory  = new AuctionsServicesFactory();
            mObjBusinessFactory  = new BusinessServicesFactory();
            mObjInventoryFactory = new InventoryServicesFactory();

            InitializeComponent();
            LoadData(pObjBatch);
            CreateDocument();
        }
コード例 #6
0
ファイル: UCSearchItemType.xaml.cs プロジェクト: xavl369/UGRS
        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;
        }
コード例 #7
0
ファイル: UCSearchItemType.xaml.cs プロジェクト: xavl369/UGRS
 public UCSearchItemType()
 {
     InitializeComponent();
     mObjInventoryServicesFactory = new InventoryServicesFactory();
 }
コード例 #8
0
 public UCQuantitiesDetail()
 {
     InitializeComponent();
     mObjAuctionsServices  = new AuctionsServicesFactory();
     mObjInventoryServices = new InventoryServicesFactory();
 }