Coding Special

Coding Special

Sunday 13 September 2020

detail en

 using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;


namespace EntityLayer

{

    [Serializable()]

    public class PurchaseRequistionDtl

    {

        public int VendorPriceListId { get; set; }


        public int Id { get; set; }

        public int? PurchaseRequistionId { get; set; }

        public DateTime Date { get; set; }

        public string ProductName { get; set; }

        public string ProGrpName { get; set; }

        public decimal Qty { get; set; }

        public decimal NoOfStockInUnit { get; set; }

        public decimal UnitPrice { get; set; }

        public int? SaleOrderId { get; set; }

        public decimal Discount { get; set; }

        public decimal Total { get; set; }

        public string Remarks { get; set; }

        

        public string PoNo { get; set; }

        public string VendorName { get; set; }

        public int? PickDataID { get; set; }

        public int? UnitID { get; set; }

        public string UnitName { get; set; }

        public bool Status { get; set; }

        public decimal DsicountQty { get; set; }

        public decimal DiscountTotal { get; set; }

        public string Location { get; set; }

        public string StatusNew { get; set; }

        public string PartNo { get; set; }


        public int ProductId { get; set; }

        public decimal ReturnQty { get; set; }

        public bool DiscountPercentage { get; set; }


        public decimal Price { get; set; }

        public decimal DiscountQty { get; set; }

        public int? GoodReceivedNewId { get; set; }

        public decimal DiscountAmount { get; set; }

        public int? CurrencyId { get; set; }

        public string CurrencyName { get; set; }

        public decimal CurrencyRate { get; set; }

        public decimal CurrencyAmount { get; set; }

        public decimal DiscountFcAmount { get; set; }

        public decimal AfterDiscountFcAmount { get; set; }

        public decimal DiscountFc { get; set; }

        public decimal FcUnitPrice { get; set; }

        public decimal FcAmount { get; set; }

        public string PageNumber { get; set; }

        public string ItemRef { get; set; }

        public string SerialNumber { get; set; }

        public decimal ConversionRateofCurrency { get; set; }

        public bool IsDivide { get; set; }

        public int VATId { get; set; }

        public string VATName { get; set; }

        public decimal VATAmount { get; set; }

        public decimal VATPercentage { get; set; }

        public decimal AfterVATTotal { get; set; }

        public decimal AfterVATTotalFC { get; set; }

    }

}


No comments:

Post a Comment