Table of Contents

Class BlankUnitRecordsStatus

Namespace
Acuit.Pinpoint.Services.Entities
Assembly
Acuit.Pinpoint.Services.Entities.dll

Status information returned from preparing blank unit records.

[DataContract(Namespace = "http://schemas.datacontract.org/2004/07/Acuit.Pinpoint.Server.Business")]
public class BlankUnitRecordsStatus
Inheritance
BlankUnitRecordsStatus
Inherited Members

Constructors

BlankUnitRecordsStatus(int, int, IList<string>)

Initializes a new instance of the BlankUnitRecordsStatus class.

public BlankUnitRecordsStatus(int recordsDeleted, int recordsAdded, IList<string> errors)

Parameters

recordsDeleted int

The number of records that were deleted.

recordsAdded int

The number of records that were added.

errors IList<string>

The list of errors.

Exceptions

ArgumentNullException

errors is null.

Properties

Errors

Gets the list of errors.

public IList<string> Errors { get; }

Property Value

IList<string>

RecordsAdded

Gets the number of records that were added.

[DataMember]
public int RecordsAdded { get; }

Property Value

int

RecordsDeleted

Gets number of records that were deleted.

[DataMember]
public int RecordsDeleted { get; }

Property Value

int

RecordsProcessed

Gets the number of records that were processed. This will be RecordsDeleted plus RecordsAdded.

[DataMember]
public int RecordsProcessed { get; }

Property Value

int