Example #1
0
        /// <summary>
        /// Fetches a Tenant
        /// </summary>
        /// <param name="id">The id of the User</param>
        /// <returns>Returns an Interface of the Tenant</returns>
        public ITenant FetchTenant(string id)
        {
            var tenant = _personRegister.FetchTenant(id);

            return(tenant);
        }