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; } } }