Пример #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
 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;
        }