-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
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,9 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
</Project> |
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,18 @@ | ||
namespace Headway.RemediatR.Model | ||
{ | ||
public class Customer | ||
{ | ||
public int CustomerId { get; set; } | ||
public string? FirstName { get; set; } | ||
public string? Surname { get; set; } | ||
public string? Telephone { get; set; } | ||
public string? Email { get; set; } | ||
public string? Address1 { get; set; } | ||
public string? Address2 { get; set; } | ||
public string? Address3 { get; set; } | ||
public string? Address4 { get; set; } | ||
public string? Address5 { get; set; } | ||
public string? Country { get; set; } | ||
public string? PostCode { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace Headway.RemediatR.Model | ||
{ | ||
public class Flow | ||
{ | ||
public int FlowId { get; set; } | ||
public string Name { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace Headway.RemediatR.Model | ||
{ | ||
public class Product | ||
{ | ||
public int ProductId { get; set; } | ||
public string Name { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace Headway.RemediatR.Model | ||
{ | ||
public class Program | ||
{ | ||
public int ProgramId { get; set; } | ||
public string Name { get; set; } | ||
public Flow Flow { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
namespace Headway.RemediatR.Model | ||
{ | ||
public class Redress | ||
{ | ||
public Redress() | ||
{ | ||
Products = new List<Product>(); | ||
} | ||
|
||
public int RedressId { get; set; } | ||
public Customer? Customer { get; set; } | ||
public Program? Program { get; set; } | ||
public List<Product> Products { 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