示例#1
0
        public Student Update(Tables.Students s, Tables.StudentInfo si)
        {
            SID        = s.ID;
            Name       = si.Name;
            Login      = s.Login;
            Surname    = si.Surname;
            Password   = s.Password;
            Patronymic = si.Patronymic;

            return(this);
        }
示例#2
0
 public Student(Tables.Students s, Tables.StudentInfo si)
 {
     Update(s, si);
 }