1
Answer

Create a List of Users

Atta Kumah

Atta Kumah

5y
915
1
I want to Design MVC application For My user.
How can i make a list to add two or more users in one row
Below is example
 
 
ID Time     Name  Age  Number  Status
2   8:30pm John    23        3           Done (Have 3 users)
2   8:35pm Seidu   30       2            Done (Have 2 users)
2   8:40pm Goda   30        5           Done (Have 5 users)
public  class Customer
{
public int UserID { get; set; }
public string Name { get; set; }
public string Age { get; set; }
public string Status { get; set; }
}
 
Please any humble contribution is happily welcome
Counting on your Kindly Consideration 
Answers (1)