-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed type in PosPurchase property and ran formatter
- Loading branch information
Showing
10 changed files
with
30 additions
and
22 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
coffeecard/CoffeeCard.Library/Migrations/20230711144034_AddPurchaseTypes.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
coffeecard/CoffeeCard.Library/Migrations/20230711161456_PurchaseDataCleanup.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...brary/Migrations/20230714211716_PurchaseOrderIdUniqueAndExternalTransactionId.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
namespace CoffeeCard.Models.Entities | ||
{ | ||
public class PosPurhase{ | ||
public int Id { get; set; } | ||
public Purchase Purchase { get; set; } | ||
public string BastiaInitials {get; set; } | ||
} | ||
/// Represents a purchase issued by a barista at the point of sale in the cafe | ||
public class PosPurhase | ||
{ | ||
/// Primary key | ||
public int Id { get; set; } | ||
/// The purchase that was issued by the barista | ||
public Purchase Purchase { get; set; } | ||
/// The ITU intials of the issueing barista | ||
public string BaristaInitials { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters