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.

23 lines
683 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BiskLog_Point_Of_Sale.Classes
{
public class products
{
public string productName { get; set; }
public string productQuantity { get; set; }
public string productCost { get; set; }
public string productUnit { get; set; }
public products(string productName, string productQuantity, string productCost,string productUnit)
{
this.productName = productName;
this.productQuantity = productQuantity + " "+productUnit;
this.productCost = productCost;
}
}
}