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

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

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

            IsAdmin = false;

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

            MembershipDate = System.DateTime.Now;
        }