Skip to content

Commit

Permalink
Merge pull request #1001 from bcgov/bugfix/AB#27634-failing-submissions
Browse files Browse the repository at this point in the history
AB#27634 bugfix - failing submissions
  • Loading branch information
jimmyPasta authored Jan 14, 2025
2 parents bc27ebc + becd114 commit b6694da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Text.Json.Serialization;
using Unity.GrantManager.GrantApplications;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
Expand All @@ -8,6 +9,8 @@ namespace Unity.GrantManager.Applications;
public class ApplicantAddress : AuditedAggregateRoot<Guid>, IMultiTenant
{
public Guid? ApplicantId { get; set; }

[JsonIgnore]
public virtual Applicant Applicant
{
set => _applicant = value;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
using Unity.GrantManager.GrantApplications;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
Expand All @@ -15,6 +16,7 @@ public class ApplicationStatus : AuditedAggregateRoot<Guid>, IMultiTenant
public GrantApplicationState StatusCode { get; set; }

// Navigation Property
[JsonIgnore]
public virtual ICollection<Application>? Applications { get; set; }

public Guid? TenantId { get; set; }
Expand Down

0 comments on commit b6694da

Please sign in to comment.