Class PaymentMethod
Represnets a payment method
Inheritance
System.Object
PaymentMethod
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.ERP.Core
Assembly: Simplic.ERP.Core.dll
Syntax
public class PaymentMethod
Constructors
| Improve this Doc View SourcePaymentMethod()
Initialize payment method
Declaration
public PaymentMethod()
Properties
| Improve this Doc View SourceArticleGuid
Gets or sets the Guid of the referenced Article
Declaration
public Guid? ArticleGuid { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Id
Gets or sets the payment method id
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
InternName
Gets or sets the internal name
Declaration
public string InternName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsDeleted
Gets or sets whether the payment method is deleted or not
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Gets or sets the display name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Number
Gets or sets the number which must be unique and given by a user
Declaration
public int Number { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |