Esempio n. 1
0
        public Person() : base()
        {
            Id = System.Guid.NewGuid();

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

            FullName =
                new ComplexTypes.FullName();
        }
Esempio n. 3
0
        public User() : base()
        {
            FullName = new ComplexTypes.FullName();

            IsAdmin = false;

            CanBeDeleted = true;
        }
Esempio n. 4
0
 public User() : base()
 {
     FullName   = new ComplexTypes.FullName();
     IsSysAdmin = false;
 }
Esempio n. 5
0
 public Person() : base()
 {
     FullName =
         new ComplexTypes.FullName();
 }
Esempio n. 6
0
        public Member() : base()
        {
            FullName = new ComplexTypes.FullName();

            MembershipDate = System.DateTime.Now;
        }