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 @@ -8,7 +8,7 @@ public interface IProduct
88
99 int ? CategoryId { get ; set ; }
1010
11- string ? QuantityPerUnit { get ; set ; }
11+ string QuantityPerUnit { get ; set ; }
1212
1313 double ? UnitPrice { get ; set ; }
1414
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class ProductDb : IProduct
1818
1919 public CategoryDb ? Category { get ; set ; }
2020
21- public string ? QuantityPerUnit { get ; set ; }
21+ public string QuantityPerUnit { get ; set ; }
2222
2323 public double ? UnitPrice { get ; set ; }
2424
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ public class ProductDto : IProduct
1010
1111 public int ? CategoryId { get ; set ; }
1212
13- public string ? QuantityPerUnit { get ; set ; }
13+ public string QuantityPerUnit { get ; set ; }
1414
1515 public double ? UnitPrice { get ; set ; }
1616
You can’t perform that action at this time.
0 commit comments