TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Nqobani Siya Khoza
NA
12
451
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; }
}
}
Reply
Answers (
1
)
What is a web API? How do we use a WEB API?
How to integrate a web api with your project