Class ContactSubTypeState
Represents a ContactState like 'active' or 'inactive'
Inheritance
System.Object
ContactSubTypeState
Implements
System.Collections.Generic.IEqualityComparer<ContactSubTypeState>
System.IEquatable<ContactSubTypeState>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.PlugIn.SAC.Contact
Assembly: Simplic.PlugIn.SAC.dll
Syntax
public class ContactSubTypeState : IEqualityComparer<ContactSubTypeState>, IEquatable<ContactSubTypeState>
Constructors
| Improve this Doc View SourceContactSubTypeState()
Initializes a new ContactState
Declaration
public ContactSubTypeState()
Properties
| Improve this Doc View SourceContactStatusKeyId
Gets or sets the ContactSubTypeKeyID (primary key) as int
Declaration
public int? ContactStatusKeyId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Id
Gets or sets the Id (not the primary key) as Guid
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
IsSelectable
Gets or sets the Flag, whether it is selectable or not
Declaration
public bool IsSelectable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
StateName
Gets or sets the name of the ContactState
Declaration
public string StateName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceEquals(ContactSubTypeState)
Compare ID
Declaration
public bool Equals(ContactSubTypeState other)
Parameters
Type | Name | Description |
---|---|---|
ContactSubTypeState | other |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(ContactSubTypeState, ContactSubTypeState)
Compare ID
Declaration
public bool Equals(ContactSubTypeState x, ContactSubTypeState y)
Parameters
Type | Name | Description |
---|---|---|
ContactSubTypeState | x | |
ContactSubTypeState | y |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode(ContactSubTypeState)
Get HashCode of the ID
Declaration
public int GetHashCode(ContactSubTypeState obj)
Parameters
Type | Name | Description |
---|---|---|
ContactSubTypeState | obj |
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.Collections.Generic.IEqualityComparer<T>
System.IEquatable<T>