///// <summary>
        ///// Adds the room.
        ///// </summary>
        ///// <param name="room">The room.</param>
        //public void AddRoom(Room room)
        //{
        //    throw new NotImplementedException();
        //}

        ///// <summary>
        ///// Finds the name of the by.
        ///// </summary>
        ///// <param name="name">The name.</param>
        ///// <returns></returns>
        //public Room FindByName(string name)
        //{
        //    throw new NotImplementedException();
        //}


        public void Dispose()
        {
            if (_context != null)
            {
                _context.Dispose();
            }

            GC.SuppressFinalize(this);
        }