Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finish renaming the DR1 and DR2 codes within the 'BaseOperatingBalanc… #171

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
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 @@ -137,8 +137,8 @@ public void BaseOperatingBalanceTransactionGetsMappedCorrectlyFromEntityToDomain
mappedDomain.MajorWorksRevenue.Should().Be(dbEntity.MajorWorksRevenue);
mappedDomain.ParkingPermits.Should().Be(dbEntity.ParkingPermits);
mappedDomain.ParkingAnnualChg.Should().Be(dbEntity.ParkingAnnualChg);
mappedDomain.RPreliminaries.Should().Be(dbEntity.RPreliminaries);
mappedDomain.RProvisionalSums.Should().Be(dbEntity.RProvisionalSums);
mappedDomain.StaffCosts.Should().Be(dbEntity.StaffCosts);
mappedDomain.CCTVMonitoring.Should().Be(dbEntity.CCTVMonitoring);
mappedDomain.RContingencySums.Should().Be(dbEntity.RContingencySums);
mappedDomain.RProfessionalFees.Should().Be(dbEntity.RProfessionalFees);
mappedDomain.RAdministrationFee.Should().Be(dbEntity.RAdministrationFee);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public class BaseOperatingBalanceTransactionDomain
public decimal MajorWorksRevenue { get; set; }
public decimal ParkingPermits { get; set; }
public decimal ParkingAnnualChg { get; set; }
public decimal RPreliminaries { get; set; }
public decimal RProvisionalSums { get; set; }
public decimal StaffCosts { get; set; }
public decimal CCTVMonitoring { get; set; }
public decimal RContingencySums { get; set; }
public decimal RProfessionalFees { get; set; }
public decimal RAdministrationFee { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ public static TDomain BaseToDomain<TDomain>(this BaseOperatingBalanceTransaction
MajorWorksRevenue = dbEntity.MajorWorksRevenue,
ParkingPermits = dbEntity.ParkingPermits,
ParkingAnnualChg = dbEntity.ParkingAnnualChg,
RPreliminaries = dbEntity.RPreliminaries,
RProvisionalSums = dbEntity.RProvisionalSums,
StaffCosts = dbEntity.StaffCosts,
CCTVMonitoring = dbEntity.CCTVMonitoring,
RContingencySums = dbEntity.RContingencySums,
RProfessionalFees = dbEntity.RProfessionalFees,
RAdministrationFee = dbEntity.RAdministrationFee,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public class BaseOperatingBalanceTransactionEntity
public decimal MajorWorksRevenue { get; set; }
public decimal ParkingPermits { get; set; }
public decimal ParkingAnnualChg { get; set; }
public decimal RPreliminaries { get; set; }
public decimal RProvisionalSums { get; set; }
public decimal StaffCosts { get; set; }
public decimal CCTVMonitoring { get; set; }
public decimal RContingencySums { get; set; }
public decimal RProfessionalFees { get; set; }
public decimal RAdministrationFee { get; set; }
Expand Down