コード例 #1
0
        public CreationProjectAdBo(bool init)
        {
            if (init)
            {
                this.PlaceBo = new HashSet <PlaceBo>();

                this.PictureCreationProjectBo = new HashSet <PictureCreationProjectBo>();

                PersonBo = new PersonBo(true);
            }
        }
コード例 #2
0
        public EcoRoommateExistingBo(bool init)
        {
            if (init)
            {
                this.PictureEcoRoommateExBo = new HashSet <PictureEcoRoommateExBo>();

                this.RoommateBo = new HashSet <RoommateBo>();

                PersonBo = new PersonBo(true);
            }
        }
コード例 #3
0
        public EventBo(bool init)
        {
            if (init)
            {
                this.PresenceEventBo = new HashSet <PresenceEventBo>();

                this.AssociatedEventBo = new HashSet <AssociatedEventBo>();

                this.AssociatedEvent1Bo = new HashSet <AssociatedEventBo>();

                PersonBo = new PersonBo(true);
            }
        }
コード例 #4
0
        public UserBo(bool init)
        {
            if (init)
            {
                this.Activated = true;

                PersonBo = new PersonBo(true);

                AgencyBo = new AgencyBo(true);

                TypeUser = 2;
            }
        }
コード例 #5
0
 public UserBo()
 {
     PersonBo = new PersonBo(true);
 }