case 3823
This commit is contained in:
@@ -1330,6 +1330,13 @@ namespace AyaNova
|
||||
Application.Idle+= new EventHandler(Application_Idle);
|
||||
this.Visible=true;
|
||||
|
||||
//case 3823
|
||||
if (mClientNoteIdToDisplay != Guid.Empty)
|
||||
{
|
||||
ClientNotesForm CN = new ClientNotesForm();
|
||||
CN.ClientID = mClient.ID;
|
||||
CN.ShowDialog();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -2087,9 +2094,9 @@ namespace AyaNova
|
||||
|
||||
#region Business object editing / adding / deletion related code
|
||||
|
||||
//case 3823
|
||||
private TypeAndID mClientNoteToDisplay;
|
||||
public TypeAndID ClientNoteToDisplay { get { return mClientNoteToDisplay; } set { mClientNoteToDisplay = value; } }
|
||||
//case 3823
|
||||
private Guid mClientNoteIdToDisplay = Guid.Empty;
|
||||
public Guid ClientNoteToDisplay { get { return mClientNoteIdToDisplay; } set { mClientNoteIdToDisplay = value; } }
|
||||
|
||||
|
||||
private Client mClient;
|
||||
|
||||
Reference in New Issue
Block a user