Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 | using IndianHealthService.BMXNet.Model;
|
---|
5 |
|
---|
6 | namespace IndianHealthService.BMXNet.WinForm
|
---|
7 | {
|
---|
8 | internal class DesktopUser: DesktopObject, User, IDisposable
|
---|
9 | {
|
---|
10 |
|
---|
11 | public static DesktopUser FindCurrent(DesktopSession aSession)
|
---|
12 | {
|
---|
13 | DesktopUser answer = new DesktopUser();
|
---|
14 |
|
---|
15 | /*
|
---|
16 | answer.Ien = aSession.CssPatient.Handle.ToString();
|
---|
17 | answer.PatientName = aSession.CssPatient.Name;
|
---|
18 | answer.Sex = aSession.CssPatient.Sex;
|
---|
19 | answer.Dob = aSession.CssPatient.DOB;
|
---|
20 | answer.AdminDate = aSession.CssPatient.AdmitDate;
|
---|
21 | answer.Age = aSession.CssPatient.Age;
|
---|
22 | answer.Ssn = aSession.CssPatient.SSN;
|
---|
23 | */
|
---|
24 |
|
---|
25 | return answer;
|
---|
26 |
|
---|
27 | }
|
---|
28 |
|
---|
29 | #region IDisposable Members
|
---|
30 |
|
---|
31 | public void Dispose()
|
---|
32 | {
|
---|
33 | throw new NotImplementedException();
|
---|
34 | }
|
---|
35 |
|
---|
36 | #endregion
|
---|
37 |
|
---|
38 |
|
---|
39 | private String _name;
|
---|
40 |
|
---|
41 | public String Name
|
---|
42 | {
|
---|
43 | get { return _name; }
|
---|
44 | set { _name = value; }
|
---|
45 | }
|
---|
46 | }
|
---|
47 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.