Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

- Create Controller

- Create methods (Delete, Edit, Search, ShowDetails, Delete, SearchFrom, etc.)


 Instantiate DAO
 Instantiate Model
 Other code
 Return model object
- Add Views();
-
- Create Model
- Properties
o Data types
o Data validation
- Create Services’ Folder
- Create Interface
o Create Methods (stub out):
 GetAll
 Search
 GetById
 Insert
 Delete
 Update
- Create DAO : Interface
o string connectionString = @”...”;
o implement interface methods
o create variables, list, etc.
o sql statements
o using SqlConnection and SqlCommand…)
 try and catch
-Create Database

You might also like