Skip to content

Commit 7ca4a85

Browse files
committed
added missing file
1 parent 8227c86 commit 7ca4a85

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Shared/Models/NorthwindModel.cs

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel.DataAnnotations;
4+
using System.Text;
5+
6+
namespace DropDownListWithEF.Shared.Models
7+
{
8+
public class Region
9+
{
10+
[Key]
11+
public int? RegionID { get; set; }
12+
13+
public string RegionDescription { get; set; }
14+
}
15+
16+
public class Territories
17+
{
18+
[Key]
19+
public string TerritoryID { get; set; }
20+
21+
public string TerritoryDescription { get; set; }
22+
23+
public int? RegionID { get; set; }
24+
25+
}
26+
}

0 commit comments

Comments
 (0)