File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ public interface ICustomer
66 {
77 string CustomerId { get ; set ; }
88
9- string ? CompanyName { get ; set ; }
9+ string CompanyName { get ; set ; }
1010
1111 string ContactName { get ; set ; }
1212
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ public class CustomerDb : ICustomer
1010 [ DatabaseGenerated ( DatabaseGeneratedOption . None ) ]
1111 public string CustomerId { get ; set ; }
1212
13- public string ? CompanyName { get ; set ; }
13+ public string CompanyName { get ; set ; }
1414
1515 public string ContactName { get ; set ; }
1616
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ public class CustomerDto : ICustomer
88 public string CustomerId { get ; set ; }
99
1010 [ Required ]
11- public string ? CompanyName { get ; set ; }
11+ public string CompanyName { get ; set ; }
1212
1313 public string ContactName { get ; set ; }
1414
You can’t perform that action at this time.
0 commit comments