Application Development

Sep 19 2018 6:55 AM
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<File> Files { get; set; }
public int Quantity { get; set; }
}
}
 

Answers (1)