private B2BSERAWebService.Model.LoginAuthenticationViewModel LoginAuthenticationResponse()
        {
            LoginAuthenticationViewModel LoginAuthenticationResult = new B2BSERAWebService.Model.LoginAuthenticationViewModel()
            {
                Acknowledge = true,
                TicketNo    = "EDE283E6BE1A866452AC76F106CC5CB80BA1902F0BBA8C019F27D3E5025C931139B8E385AD37F6E1CDA0FB029A1198E17DD968A5C711A1FFFB72F33405F34B8EA545F4CE02F7B8B83369C36AC83BF0FAE422B15B919D294047AEC92AF8DC67A0",
                Message     = "Login Succeeded"
            };

            return(LoginAuthenticationResult);
        }
        private B2BSERAWebService.Model.LoginAuthenticationViewModel LoginAuthenticationResponseError(Exception ex)
        {
            LoginAuthenticationViewModel LoginAuthenticationResult = new B2BSERAWebService.Model.LoginAuthenticationViewModel()
            {
                Acknowledge = false,
                TicketNo    = "",
                Message     = "Login Failed"
            };

            return(LoginAuthenticationResult);
        }