public Response<string> DoPayment(ReqPayment objreq)
        {
            string rst = "";
            Response<string> objresponse = new Response<string>();
            UnseenTalentsMethod objmethod = new UnseenTalentsMethod();

            try
            {
                rst = objmethod.DoPaymentBYUserid(objreq);
                objresponse.Create(true, 0, "pament successfully done", rst);

            }
            catch (Exception ex)
            {
                objresponse.Create(false, -1, "", rst);
            }
            return objresponse;
        }