コード例 #1
0
 public User(string nameUser, string mail, string password, DataManager.Profile profile)
 {
     this.nameUser = nameUser;
     this.mail     = mail;
     this.password = password;
     this.profile  = profile;
 }
コード例 #2
0
 public Data(Data item)
 {
     this.day        = item.day;
     this.month      = item.month;
     this.year       = item.year;
     this.hour       = item.hour;
     this.meridian   = item.meridian;
     this.clientName = item.clientName;
     this.medicName  = item.medicName;
     this.profile    = item.profile;
 }
コード例 #3
0
 public Data(int day, int month, int year, int hour, string meridian, string clientName, string medicName, DataManager.Profile profile)
 {
     this.day        = day;
     this.month      = month;
     this.year       = year;
     this.hour       = hour;
     this.meridian   = meridian;
     this.clientName = clientName;
     this.medicName  = medicName;
     this.profile    = profile;
 }