public virtual bool Match(NeoDatis.Odb.Test.VO.School.Student @object)
 {
     return(@object.GetName().Equals(name));
 }
예제 #2
0
파일: History.cs 프로젝트: ekicyou/pasta
 public virtual void SetStudent(NeoDatis.Odb.Test.VO.School.Student student)
 {
     this.student = student;
 }
예제 #3
0
파일: History.cs 프로젝트: ekicyou/pasta
		public virtual void SetStudent(NeoDatis.Odb.Test.VO.School.Student student)
		{
			this.student = student;
		}
예제 #4
0
 public override bool Match(object @object)
 {
     NeoDatis.Odb.Test.VO.School.Student s = (NeoDatis.Odb.Test.VO.School.Student)@object;
     return(s.GetName().Equals(name));
 }