КОМЕНТАРІ •

  • @shawnbelcher6542
    @shawnbelcher6542 День тому

    Great tutorial! I have watched it many times. I have been trying to include a search button but I’m stuck. Can you please share with me how you would do that?

  • @LeeKobe1
    @LeeKobe1 Рік тому

    Great tutorial! Is there a way to insert a photo image in the gui with their personal info? Thanks!

  • @aitools111
    @aitools111 2 роки тому +1

    Great ,thank you

  • @bwolllard
    @bwolllard Рік тому

    I would like to see a part two with data validation for email and phone formats.

  • @MethodOverRide
    @MethodOverRide 2 роки тому

    Great video 👍

  • @pollymolly8128
    @pollymolly8128 Рік тому +1

    Theres a problem on load button

  • @hallythejester1234
    @hallythejester1234 2 роки тому

    Whenever I click the load button, the backend code comes back up and the error I see is System.IndexOutOfRangeException: 'index was out of bound of the array.' i don't get it. i numbered the arrays properly so why is it saying that

  • @kailashavinash8086
    @kailashavinash8086 2 роки тому

    C) Create an interface called Payable. This is the interface that will be used by the accounting department's software (which you are not responsible for authoring) for all things that they need to write checks for. The Payable interface should contain three functions:
    Retrieve amount due
    Add to amount due
    Payment address
    Derive an Employee class from the Person class. The Employee class should add the following properties:
    Salary
    Mailing address
    In addition, the Employee class should implement the Payable interface. The implementation of the functions specified in the Payable interface should make sense. In other words, the payment address should be the mailing address of the employee. In order to make this work right, you will need to allocate an internally protected state variable that keeps track of the amount of money due. This state variable will obviously be modified by the functions defined in the interface. You can of course, try to do this with a property and add this property to the Payable interface.