public ApiUser GetSingle(int?id)
        {
            ApiUser apiUser = new ApiUser();

            try
            {
                apiUser = service.GetSingle(id);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(apiUser);
        }