Esempio n. 1
0
        /// <summary>
        /// Method Name     : GetVerificationData
        /// Author          : Vivek Bhavsar
        /// Creation Date   : 22 Jan 2018
        /// Purpose         : get customer verification details
        /// Revision        :
        /// </summary>
        /// <returns></returns>
        public async Task <string> GetVerificationData()
        {
            APIResponse <CustomerModel> response = await loginAPIServies.GetCustomerVerificationData(UtilityPCL.LoginCustomerData);

            if (!response.STATUS)
            {
                return(response.Message);
            }

            return(string.Empty);
        }