Ejemplo n.º 1
0
    public void HandleCreateClick(object sender, e ButtonClickEventArgs)
    {
        User userToBeCreated = new User()
        {
            Name = txtName.Text
        };
        SomeDal myDal = new SomeDal();

        myDal.CreateUser(userToBeCreated);
    }
Ejemplo n.º 2
0
    public CreateUser(User userToBeCreated)
    {
        SomeDal myDal = new SomeDal();

        myDal.CreateUser(userToBeCreated);
    }