Please enable JavaScript.
Coggle requires JavaScript to display documents.
The overall Mapping of the ACC Architecture, Backend - Coggle Diagram
The overall Mapping of the ACC Architecture
Models
Create a Model name like '
AccountType.js
'
Controller Folder create a controller like '
accountTypeCtrl.js
'
Create Service for viewing the data and organizing the data and we call it '
accountTypeModelSvc.js
'
Map all the parts of MVC on the state like accountTypeState.js
The UI is ready for view
Then we need create a service for API
Create a service name '
accountTypeDataSvc.js
'
Need to map it to the '
accountTypeState.js
'
2 more items...
Backend
Create an entity like name AccountType
Create in Interface named IAccountTypeRepository
Create Repository name AccountTypeRepository
Add a method named SaveAccountType()
inside the method we check if the the object is new or existing
If it is new then the data will be save
Add a controller like AccountTypeController.cs
Create a SaveAccountType() method
If it is from existing data then it will be updated