示例#1
0
 public Product(ProductId Id_,
                string ProductName_,
                ProductSubCategoryId ProductSubCategoryId_,
                string Size_,
                decimal RetailPrice_,
                ProductBrandId ProductBrandId_,
                string ManufacturerBarcode_,
                string ManufacturerPartNum_,
                bool IsActive_,
                bool PricingRequiresReview_,
                bool ExceptionalRetailPrice_,
                bool IsProductDeleted_,
                bool MultipleVendors_,
                int QtyBusyMin_,
                int QtyBusyMax_,
                int QtySlowMin_,
                int QtySlowMax_,
                string Notes_,
                decimal RetailPrice2_,
                decimal Price2SizeMultiplier_,
                DateTime CreateDate_,
                DateTime ModifyDate_)
     : base(Id_, CreateDate_, ModifyDate_)
 {
     mProductName          = ProductName_;
     mProductSubCategoryId = ProductSubCategoryId_;
     mSize                   = Size_;
     mRetailPrice            = RetailPrice_;
     mProductBrandId         = ProductBrandId_;
     mManufacturerBarcode    = ManufacturerBarcode_;
     mManufacturerPartNum    = ManufacturerPartNum_;
     mIsActive               = IsActive_;
     mPricingRequiresReview  = PricingRequiresReview_;
     mExceptionalRetailPrice = ExceptionalRetailPrice_;
     mIsProductDeleted       = IsProductDeleted_;
     mMultipleVendors        = MultipleVendors_;
     mQtyBusyMin             = QtyBusyMin_;
     mQtyBusyMax             = QtyBusyMax_;
     mQtySlowMin             = QtySlowMin_;
     mQtySlowMax             = QtySlowMax_;
     mNotes                  = Notes_;
     mRetailPrice2           = RetailPrice2_;
     mPrice2SizeMultiplier   = Price2SizeMultiplier_;
 }
示例#2
0
 public PurLine(PurLineId Id_,
                PurOrderId PurOrderId_,
                VendorProductId VendorProductId_,
                decimal CaseCostOverride_,
                decimal EachCostOverride_,
                bool OrderedEaches_,
                int QtyOrdered_,
                int QtyReceived_,
                int QtyBackordered_,
                int QtyDamaged_,
                int QtyMissing_,
                int QtyOnHand_,
                bool SpecialOrder_,
                string Notes_,
                string ProductName_,
                ProductSubCategoryId ProductSubCategoryId_,
                string Size_,
                decimal RetailPrice_,
                ProductBrandId ProductBrandId_,
                string ManufacturerBarcode_,
                string ManufacturerPartNum_,
                string ShelfOrder_,
                decimal RetailPriceOverride_,
                string VendorPartNum_,
                decimal CaseCost_,
                int CountInCase_,
                decimal EachCost_,
                bool PreferredSource_,
                bool WholeCasesOnly_,
                DateTime CreateDate_,
                DateTime ModifyDate_)
     : base(Id_, CreateDate_, ModifyDate_)
 {
     mPurOrderId           = PurOrderId_;
     mVendorProductId      = VendorProductId_;
     mCaseCostOverride     = CaseCostOverride_;
     mEachCostOverride     = EachCostOverride_;
     mOrderedEaches        = OrderedEaches_;
     mQtyOrdered           = QtyOrdered_;
     mQtyReceived          = QtyReceived_;
     mQtyBackordered       = QtyBackordered_;
     mQtyDamaged           = QtyDamaged_;
     mQtyMissing           = QtyMissing_;
     mQtyOnHand            = QtyOnHand_;
     mSpecialOrder         = SpecialOrder_;
     mNotes                = Notes_;
     mProductName          = ProductName_;
     mProductSubCategoryId = ProductSubCategoryId_;
     mSize                = Size_;
     mRetailPrice         = RetailPrice_;
     mProductBrandId      = ProductBrandId_;
     mManufacturerBarcode = ManufacturerBarcode_;
     mManufacturerPartNum = ManufacturerPartNum_;
     mShelfOrder          = ShelfOrder_;
     mRetailPriceOverride = RetailPriceOverride_;
     mVendorPartNum       = VendorPartNum_;
     mCaseCost            = CaseCost_;
     mCountInCase         = CountInCase_;
     mEachCost            = EachCost_;
     mPreferredSource     = PreferredSource_;
     mWholeCasesOnly      = WholeCasesOnly_;
 }