public PeopleSearchingController()
        {
            ResearchRoommateSql researchRoommateSql = new ResearchRoommateSql(base.WebDbSqlConnectionString);

            this.researchRoommateManager = new ResearchRoommateManager(researchRoommateSql);

            PlaceSql placeSql = new PlaceSql(base.WebDbSqlConnectionString);

            this.placeManager = new PlaceManager(placeSql);

            PersonSql personSql = new PersonSql(base.WebDbSqlConnectionString);

            this.personManager = new PersonManager(personSql);
        }
Exemple #2
0
 private void InitData()
 {
     this.ResearchRoommateSql = null;
 }
Exemple #3
0
        //  'ResearchRoommateSql'

        #endregion

        #region Initialization

        public ResearchRoommateManager(ResearchRoommateSql poResearchRoommateSql)
            : this()
        {
            this.ResearchRoommateSql = poResearchRoommateSql;
        }