ChoreTracker

Web Project



Project Overview

This project contains a simple CRUD (Create, Read, Update, Delete) application implemented in C# using the Entity Framework and following the MVC (Model-View-Controller) architecture.

Overview:

This project aims to demonstrate the fundamental operations of a CRUD application in a C# environment with the added structure of MVC. It utilizes Entity Framework, a popular Object-Relational Mapping (ORM) framework, to interact with a relational database.

Features:

  • Create: Add new records to the database.
  • Read: Retrieve and display existing records from the database.
  • Update: Modify existing records in the database.
  • Delete: Remove records from the database.

Technologies Used:

  • C#: The primary programming language.
  • Entity Framework: An ORM framework for simplifying database operations.
  • ASP.NET MVC: A web application framework for building scalable and maintainable web applications.

MVC Structure:

The application follows the MVC architecture:

  • Model: Describes the structure of the data and business logic.
  • View: Displays the user interface and receives user input.
  • Controller: Handles user input, updates the model, and manipulates the view.

About Project:

The ChoreTracker project is a chore management web app where users can register tasks, track due dates, and designate chore types. The system validates dates, chore categories, and chore type creation.


Tags: Full Stack | C# |


Back to Projects