Guest User

Untitled

a guest
Oct 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. string companyname;
  2. string location;
  3. int taxnumber;
  4. int employeenumber;
  5.  
  6. public string Companyname { get => companyname; set => companyname = value; }
  7. public string Location { get => location; set => location = value; }
  8. public int Taxnumber { get => taxnumber; set => taxnumber = value; }
  9. public int Employeenumber { get => employeenumber; set => employeenumber = value; }
  10. }
  11.  
  12. public class Company{
  13. public string Companyname{get;set;};
  14. public string Location{get;set;};
  15. public int Taxnumber{get;set;};
  16. public int Employeenumber{get;set;};
  17. }
  18.  
  19. List<Company> companies=new List<Company>();
Add Comment
Please, Sign In to add comment