Go to file
Akash Shah 33e86732f9 Started the refacotoring Process:
- Adding ORM
    - *made customer and contact representation so far*
    - make constructor to fill data and any linked tables
    - Set any corresponding types
    - any related objected are added as feilds of the parent object (customer ← customer contact)
        - use object to get related objects whenever possible
            - Ex. Callinc customer.getContacts() instead of the get contacts service.
    - Add astute service calls to ORM's
    - Made grid row data to use same objects as the typescripts retreived data
        - before I was using the promise itself for the rowData, and then keeping a seperate feild to store the actual data returned from the promise. Now, they are both using the data returned from the promise instead.
        - have to take off the `|async` part from the grid options
- AG - Grid clean up
    - Added whaterver column defiintions were missing
    - added default grid options
2020-10-11 15:47:30 -04:00
AstuteClient2 Started the refacotoring Process: 2020-10-11 15:47:30 -04:00
AstuteSystem Update .gitignore 2020-10-05 23:17:12 -04:00
.gitignore Update .gitignore 2020-10-05 23:17:12 -04:00
Defects Update Defects 2018-12-31 00:10:24 -05:00
README.md Update README.md 2018-07-15 14:14:42 -04:00

Astute Private Repo

Overview

This project contains three major components: 1. System: the back end webservices, and the part which interacts with the MySQL backend. 2. Client: the front end web tool, for easy interaction with the system. 3. SQL: the setup for the MySQL backend table.