Class User
- Namespace
- RetailForce.Fiscalisation.Model
- Assembly
- RetailForce.Fiscalisation.Model.dll
The user for a document.
[Serializable]
public class User : IEquatable<User>
- Inheritance
-
User
- Implements
- Inherited Members
Constructors
User()
Constructor.
public User()
User(string, string, string, string, DateTimeOffset?)
Constructor.
public User(string id, string caption, string firstName = null, string lastName = null, DateTimeOffset? dateOfEntry = null)
Parameters
idstringThe id of the user.
captionstringThe caption / name of the user.
firstNamestringThe first name of the user.
lastNamestringThe last name of the user.
dateOfEntryDateTimeOffset?The date of the entry of the user.
Properties
Caption
The caption / name of the user.
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string Caption { get; set; }
Property Value
DateOfEntry
The entry date for the user in the master data table.
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public DateTimeOffset? DateOfEntry { get; set; }
Property Value
FirstName
The first name of the user.
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string FirstName { get; set; }
Property Value
Id
The id of the user.
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string Id { get; set; }
Property Value
LastName
The last name of the user.
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string LastName { get; set; }
Property Value
TaxNumber
The personal tax number of the operator.
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string TaxNumber { get; set; }
Property Value
Methods
Equals(User)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(User other)
Parameters
otherUserAn object to compare with this object.