Class CompanyContactViewModel
Company contact viewmodel
Implements
IMultiTenantCompatibleViewModel
ICustomAddonViewModel
Inherited Members
Namespace: Simplic.PlugIn.SAC.Contact.UI
Assembly: Simplic.PlugIn.SAC.dll
Syntax
public class CompanyContactViewModel : ContactViewModel
Constructors
| Improve this Doc View SourceCompanyContactViewModel(Contact)
Initialize new company contact viewmodel
Declaration
public CompanyContactViewModel(Contact contact)
Parameters
Type | Name | Description |
---|---|---|
Contact | contact | Company contact instance |
Properties
| Improve this Doc View SourceAddPersonalAccount
Gets or sets the command to add a new personal account
Declaration
public ICommand AddPersonalAccount { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.Input.ICommand |
DeletePersonalAccount
Gets or sets the command to delete the selected personal account.
Declaration
public ICommand DeletePersonalAccount { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.Input.ICommand |
PersonalAccounts
Gets a list of personal accounts
Declaration
public ObservableCollection<PersonalAccountViewModel> PersonalAccounts { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<PersonalAccountViewModel> |
PersonalAccountTabIsSelected
Gets or sets whether the personal account tab is selected or not
Declaration
public bool PersonalAccountTabIsSelected { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
SelectedPersonalAccount
Gets or sets the personal account
Declaration
public PersonalAccountViewModel SelectedPersonalAccount { get; set; }
Property Value
Type | Description |
---|---|
PersonalAccountViewModel |
Implements
IMultiTenantCompatibleViewModel
ICustomAddonViewModel