Biskilog POS desktop appilcation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.9 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BiskLog_Point_Of_Sale.Classes
{
public class OrderInvoice
{
public string fromDate { get; set; }
public string toDate { get; set; }
public string totalProduct { get; set; }
public string additionalCharges { get; set; }
public string AllTotal { get; set; }
public string customerName { get; set; }
public string customerAddress { get; set; }
public string customerTelephone { get; set; }
public string customerEmail { get; set; }
public string orderDate { get; set; }
public string companyName { get; set; }
public string branchName { get; set; }
public string telephone { get; set; }
public string branchLocation { get; set; }
public string orderid { get; set; }
public OrderInvoice(string beginDate, string endDate, string ProductsCost, string additional, string All,
string customer, string address, string email, string telephone, string orderDate, string companyName, string branchName, string branchtelephone,
string branchLocation,string orderid)
{
this.fromDate = beginDate;
this.toDate = endDate;
this.additionalCharges = additional;
this.AllTotal = All;
this.customerName = customer;
this.customerAddress = address;
this.customerTelephone = telephone;
this.customerEmail = email;
this.totalProduct = ProductsCost;
this.orderDate = orderDate;
this.companyName = companyName;
this.branchName = branchName;
this.telephone = branchtelephone;
this.branchLocation = branchLocation;
this.orderid = orderid;
}
}
}