Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5.  
  6. namespace WebApplication3.Models
  7. {
  8. public class Customer
  9. {
  10. public int Id { get; set; }
  11. public string Name { get; set; }
  12. public string Adress { get; set; }
  13. public int Age { get; set; }
  14.  
  15. public Customer(int id, string name,string adress,int age)
  16. {
  17. Id = id;
  18. Name = name;
  19. Adress = adress;
  20. Age = age;
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement