Esempio n. 1
0
        /// <summary>
        /// Method Name     : RefreshCustomerProfileData
        /// Author          : Sanket Prajapati
        /// Creation Date   : 2 Dec 2017
        /// Purpose         : for Refresh Customer profile Data
        /// Revision        :
        /// </summary>
        public async static Task <string> RefreshCustomerProfileData()
        {
            LoginAPIServies             loginAPIServies = new LoginAPIServies();
            APIResponse <CustomerModel> response        = await loginAPIServies.GetCustomerProfileData(LoginCustomerData);

            if (!response.STATUS)
            {
                return(response.Message);
            }
            else
            {
                return(string.Empty);
            }
        }
Esempio n. 2
0
 /// <summary>
 /// Construtor
 /// </summary>
 public MyAccount()
 {
     loginAPIServies = new LoginAPIServies();
 }
Esempio n. 3
0
 //Constructor
 public Login()
 {
     loginAPIServies       = new LoginAPIServies();
     loginValidateServices = new LoginValidateServices();
 }