using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EntityLayer
{
[Serializable()]
public class PurchaseRequistion
{
public int VendorPriceListId { get; set; }
public int PurchaseRequistionId { get; set; }
public int? VendorId { get; set; }
public DateTime Date { get; set; }
public string PoNo { get; set; }
public string VendorName { get; set; }
public decimal NetTotal { get; set; }
public string Location { get; set; }
public string Remarks { get; set; }
public string Employee { get; set; }
public bool Status { get; set; }
public string ProductName { get; set; }
public decimal Total { get; set; }
public int? PurReqId { get; set; }
public int? JobId { get; set; }
public int? CompanyId { get; set; }
public int? UserId { get; set; }
public string JobName { get; set; }
public string VendorAccountCode { get; set; }
public string ApprovalStatus { get; set; }
public string UserName { get; set; }
public string ClientPoNo { get; set; }
public string RefNo { get; set; }
public string OurPoNo { get; set; }
public bool DiscountAllAmount { get; set; }
public bool DiscountAllPer { get; set; }
public decimal DiscountAmount { get; set; }
public decimal NetDiscount { get; set; }
public decimal DiscountPer { get; set; }
public int? CreatedBy { get; set; }
public int? ModifiedBy { get; set; }
public DateTime? CreatedOn { get; set; }
public DateTime? ModifiedOn { get; set; }
public string DocumentOP { get; set; }
public string DocumentBalance { get; set; }
public int? FinancialYearID { get; set; }
public int? CurrencyId { get; set; }
public decimal FcRate { get; set; }
public decimal FcTotal { get; set; }
public decimal FcNetDiscount { get; set; }
public decimal Amount { get; set; }
public decimal VATAmount { get; set; }
public decimal VATAmountFC { get; set; }
public decimal RemainingTotal { get; set; }
public decimal TotalQty { get; set; }
public decimal PickQty { get; set; }
public decimal Remaining_Qty { get; set; }
}
}
No comments:
Post a Comment