Exemple #1
0
        /// <summary>
        /// Fetchs the apartment the user is lives in
        /// </summary>
        /// <param name="userId">The Id of the user</param>
        /// <returns>Returns the Interface of the apartment</returns>
        public IApartment FetchApartment(string userId)
        {
            var apt = _personRegister.FetchApartment(userId);

            return(apt);
        }