Пример #1
0
        /// <summary>
        /// Gets a list with all the Escaperooms in the database
        /// </summary>
        /// <returns>A list of all the escaperooms</returns>
        public List <MAPMAClient.Model.EscapeRoom> GetAllForOwner()
        {
            IEscapeRoom_Services Service = new EscapeRoom_ServicesClient();

            var escapeRooms = Service.GetAllForOwner();

            return(GetClintsideEscapeRooms(escapeRooms));
        }
Пример #2
0
        public List <EscapeRoom> GetAllEscapeRooms()
        {
            IEscapeRoom_Services escServ = new EscapeRoom_ServicesClient();

            return(escServ.GetAllForOwner());
        }