예제 #1
0
        public Person() : base()
        {
            Id = System.Guid.NewGuid();

            // Note: Complex types should be created in the constructor!
            FullName = new ComplexTypes.FullName();
        }
예제 #2
0
        public Person() : base()
        {
            Id = System.Guid.NewGuid();

            FullName =
                new ComplexTypes.FullName();
        }
예제 #3
0
        public User() : base()
        {
            FullName = new ComplexTypes.FullName();

            IsAdmin = false;

            CanBeDeleted = true;
        }
예제 #4
0
파일: User.cs 프로젝트: Sepehr-Glpz/MyBooks
 public User() : base()
 {
     FullName   = new ComplexTypes.FullName();
     IsSysAdmin = false;
 }
예제 #5
0
 public Person() : base()
 {
     FullName =
         new ComplexTypes.FullName();
 }
예제 #6
0
        public Member() : base()
        {
            FullName = new ComplexTypes.FullName();

            MembershipDate = System.DateTime.Now;
        }