source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet.WinForm/DesktopUser.cs@ 1146

Last change on this file since 1146 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 1.2 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using IndianHealthService.BMXNet.Model;
5
6namespace 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.