123456789101112131415161718192021222324252627 |
- namespace WpfApp3
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Country
- {
- public Country()
- {
- this.Hotel = new HashSet<Hotel>();
- }
-
- public string Code { get; set; }
- public string Name { get; set; }
-
- public virtual ICollection<Hotel> Hotel { get; set; }
- }
- }
|