-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from eurofurence/artshow-messaging-refactor
Updating Art Show import methods & controller endpoints
- Loading branch information
Showing
8 changed files
with
205 additions
and
24 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
src/Eurofurence.App.Server.Services/Abstractions/ArtShow/AgentClosingNotificationResult.cs
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace Eurofurence.App.Server.Services.Abstractions.ArtShow | ||
{ | ||
public class AgentClosingNotificationResult | ||
{ | ||
public int AgentBadgeNo { get; set; } | ||
public string AgentName { get; set; } | ||
public string ArtistName { get; set; } | ||
public decimal TotalCashAmount { get; set; } | ||
public int ExhibitsSold { get; set; } | ||
public int ExhibitsUnsold { get; set; } | ||
public int ExhibitsToAuction { 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
12 changes: 12 additions & 0 deletions
12
src/Eurofurence.App.Server.Services/Abstractions/ArtShow/ImportResult.cs
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Eurofurence.App.Server.Services.Abstractions.ArtShow | ||
{ | ||
public class ImportResult | ||
{ | ||
public int RowsImported { get; set; } | ||
public int RowsSkippedAsDuplicate { 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
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