You are on page 1of 2

using System;

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;

namespace Expost.Models
{
public class Createbook
{
[Key]
public int Id { get; set; }

public string Manual_Track_Number { get; set; }


public string Service { get; set; }
public string Shipment_Type { get; set; }
public string Carrier { get; set; }
public string Payment_mode { get; set; }
public string Contents { get; set; }

public decimal Total_Weight { get; set; }


public decimal Total_Volume_Weight { get; set; }
public decimal Total_Chargeable_Weight { get; set; }
public string Invoice_Value { get; set; }
public decimal Charge_per_kg { get; set; }
public decimal Amount_payable { get; set; }
public decimal Total_Amount_paid { get; set; }
public decimal Balance { get; set; }
public decimal TaxPercent { get; set; }
public decimal TotAmountAfterTax { get; set; }
public string isManual { get; set; }
public long ShipmentNo { get; set; }

public string ShipCompName { get; set; }


public string ShipName { get; set; }
public string ShipAddress1 { get; set; }
public string ShipAddress2 { get; set; }
public string ShipAddress3 { get; set; }
public string ShipCountry { get; set; }
public string ShipPostalCode { get; set; }
public string ShipCity { get; set; }
public string ShipContact1 { get; set; }
public string ShipContact2 { get; set; }
public string ShipEmail { get; set; }
public string ShipWeb { get; set; }
public string ShipTaxID { get; set; }
public string RecCompName { get; set; }
public string RecName { get; set; }
public string RecAddress1 { get; set; }
public string RecAddress2 { get; set; }
public string RecAddress3 { get; set; }
public string RecCountry { get; set; }
public string RecPostalCode { get; set; }
public string RecCity { get; set; }
public string RecContact1 { get; set; }
public string RecContact2 { get; set; }
public string RecEmail { get; set; }
public string RecWeb { get; set; }
public string RecTaxID { get; set; }
public DateTime LSDate { get; set; }
public int LS_ID { get; set; }
public DateTime MFDate { get; set; }
public int MF_ID { get; set; }

public DateTime EntryDate { get; set; }

public int ShipperAddressBook_Id { get; set; }

public int DeliverAddressBook_Id { get; set; }

public int Branch_Id { get; set; }

public string CustomerId { get; set; }


public string UserId { get; set; }
public ApplicationUser User { get; set; }
public int C_Id { get; set; }
public COURIER Courier { get; set; }
public int SP_Id { get; set; }
public SERVICE_PROVIDER ServiceProvider { get; set; }

public string TrackNo { get; set; }

public string SecCourier { get; set; }

public string SecTrackNo { get; set; }

public string TrackInfo { get; set; }


}
}

You might also like