Exemplo n.º 1
0
        public bool CheckAuthentication(string inId, string inPassword)
        {
            var authenticationService = _serviceFactory.CreateAuthenticationService(_unitOfWork);

            return(authenticationService.Authenticate(inId, inPassword));
        }