Skip to content

Commit

Permalink
fix(*): IOrder.CustomerId nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
ddidgdimitrov-infragistics committed Feb 12, 2025
1 parent efe414b commit f0067d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NorthwindCRUD/Models/Contracts/IOrder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public interface IOrder
{
int OrderId { get; set; }

string CustomerId { get; set; }
string? CustomerId { get; set; }

int EmployeeId { get; set; }

Expand Down

0 comments on commit f0067d2

Please sign in to comment.