Class BlankUnitRecordsStatus
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
recordsDeletedintThe number of records that were deleted.
recordsAddedintThe number of records that were added.
errorsIList<string>The list of errors.
Exceptions
- ArgumentNullException
errorsis null.
Properties
Errors
Gets the list of errors.
public IList<string> Errors { get; }
Property Value
RecordsAdded
Gets the number of records that were added.
[DataMember]
public int RecordsAdded { get; }
Property Value
RecordsDeleted
Gets number of records that were deleted.
[DataMember]
public int RecordsDeleted { get; }
Property Value
RecordsProcessed
Gets the number of records that were processed. This will be RecordsDeleted plus RecordsAdded.
[DataMember]
public int RecordsProcessed { get; }