How to Generate Barcode for Products added into the system, this is how i constructed my class... what should i change or add ?
public class Product
{
public int ProductId { get; set; }
public string ProductName { get; set; }
[DataType(DataType.Currency)]
public decimal Price { get; set; }
public string Description { get; set; }
public byte[] Picture { get; set; }
public ICollection Files { get; set; }
public int Quantity { get; set; }
}
}
Sanwar RanwaPosted Sep 19, 2018, 7:18 AM