public LoginReviewDetailSet GetUserAuthInfo(int clientId) //Return authentication information according to the given clientId
        {
            try
            {
                LoginReviewDetailSet detail_list = new LoginReviewDetailSet();


                detail_list = __repository2.GetUserAuthInfo(clientId);

                return(detail_list);
            }

            catch (Exception ex)
            {
                throw;
            }
        }
        public LoginReviewDetailSet GetApiConsumerUser(Guid clientId)
        {
            try
            {
                LoginReviewDetailSet detail_list = new LoginReviewDetailSet();


                detail_list = __repository2.GetApiConsumerUser(clientId);

                return(detail_list);
            }

            catch (Exception ex)
            {
                throw;
            }
        }
        //login user

        public LoginReviewDetailSet GetLoginReviewSet(Login login)
        {
            try
            {
                LoginReviewDetailSet detail_list = new LoginReviewDetailSet();


                detail_list = __repository2.GetLoginReviewSet(login);

                return(detail_list);
            }

            catch (Exception ex)
            {
                throw;
            }
        }