Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EstateManagement.Client" Version="2023.11.2-build65" />
<PackageReference Include="EstateManagement.Client" Version="2023.12.2-build66" />
<PackageReference Include="EstateManagement.Database" Version="2023.11.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.7" />
<PackageReference Include="MessagingService.Client" Version="2023.11.1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,37 @@
using System.Threading.Tasks;

namespace TransactionProcessor.DataTransferObjects{
using Newtonsoft.Json;

public class CreateFloatForContractProductRequest{


[JsonProperty("contract_id")]
public Guid ContractId{ get; set; }

[JsonProperty("product_id")]
public Guid ProductId{ get; set; }

[JsonProperty("create_date_time")]
public DateTime CreateDateTime{ get; set; }
}

public class CreateFloatForContractProductResponse
{
[JsonProperty("float_id")]
public Guid FloatId { get; set; }
}

public class RecordFloatCreditPurchaseRequest{
[JsonProperty("float_id")]
public Guid FloatId { get; set; }

[JsonProperty("purchase_date_time")]
public DateTime PurchaseDateTime { get; set; }

[JsonProperty("credit_amount")]
public Decimal CreditAmount { get; set; }

[JsonProperty("cost_price")]
public Decimal CostPrice { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EstateManagement.Client" Version="2023.11.2-build65" />
<PackageReference Include="EstateManagement.Client" Version="2023.12.2-build66" />
<PackageReference Include="EstateManagement.IntegrationTesting.Helpers" Version="2023.11.1" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="ClientProxyBase" Version="2023.12.2" />
<PackageReference Include="Ductus.FluentDocker" Version="2.10.59" />
<PackageReference Include="EstateManagement.Client" Version="2023.11.2-build65" />
<PackageReference Include="EstateManagement.Client" Version="2023.12.2-build66" />
<PackageReference Include="EstateManagement.IntegrationTesting.Helpers" Version="2023.11.2-build65" />
<PackageReference Include="EventStoreProjections" Version="2023.12.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.7" />
Expand Down