Beispiel #1
0
        public ResultDto ValidateLogin(string loginusername, string password)
        {
            ResultDto objResultDto = new ResultDto();

            try
            {
                LoginDll objLoginDll = new LoginDll();
                objResultDto = objLoginDll.ValidateLogin(loginusername, password);
            }
            catch (Exception ex)
            {
                objResultDto.Message = "OOPS! Something wroing, Please try later.";
            }
            return(objResultDto);
        }