public void CreateUser()
        {
            AutoMapperDataConfig.RegisterMappings();
            AuthenticationService authenticationService = new AuthenticationService(new UserRepository());

            var userDto = new UserDto()
            {
                IsAdmin = false,
                Login = "******",
                Password = "******"
            };
            var result = authenticationService.Create(userDto);

            Assert.AreEqual(true, result);
        }