{"id":21530671,"url":"https://github.com/oussamami01/contactapp","last_synced_at":"2026-05-02T05:40:23.186Z","repository":{"id":264210748,"uuid":"892693089","full_name":"OussamaMi01/ContactApp","owner":"OussamaMi01","description":"ContactApp is a simple console-based application written in C# for managing a contact list. It allows users to add, view, edit, and delete contacts with a user-friendly command-line interface.","archived":false,"fork":false,"pushed_at":"2024-11-22T16:51:46.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-24T06:26:32.586Z","etag":null,"topics":["console","console-app","console-application","csharp","dotnet","dotnet-build","dotnet-core","dotnet-framework","visual-studio","visual-studio-code"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OussamaMi01.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-22T15:40:11.000Z","updated_at":"2024-11-22T16:51:49.000Z","dependencies_parsed_at":"2024-11-22T17:22:19.765Z","dependency_job_id":"81ea38b7-9bbd-48e4-932b-8d31e54c1513","html_url":"https://github.com/OussamaMi01/ContactApp","commit_stats":null,"previous_names":["oussamami01/contactapp"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OussamaMi01%2FContactApp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OussamaMi01%2FContactApp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OussamaMi01%2FContactApp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OussamaMi01%2FContactApp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OussamaMi01","download_url":"https://codeload.github.com/OussamaMi01/ContactApp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244094266,"owners_count":20397020,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["console","console-app","console-application","csharp","dotnet","dotnet-build","dotnet-core","dotnet-framework","visual-studio","visual-studio-code"],"created_at":"2024-11-24T02:09:36.498Z","updated_at":"2026-05-02T05:40:23.123Z","avatar_url":"https://github.com/OussamaMi01.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# ContactApp\n\n**ContactApp** is a simple and intuitive console-based application designed to manage a contact list. The app allows users to add, view, edit, and delete contacts, providing a user-friendly command-line interface to handle these tasks efficiently.\n\n## Features\n\n- **View Contacts**: View a list of all saved contacts along with their details.\n- **Add Contact**: Add new contacts by entering their first name, last name, phone number, and email.\n- **Edit Contact**: Update details of an existing contact.\n- **Delete Contact**: Delete a contact from the list.\n- **User-Friendly Interface**: Clear and simple menu navigation, with real-time feedback for each action.\n\n## Requirements\n\n- **C#**: This application is built using C#. You will need a compatible runtime to run the app.\n- **.NET SDK**: This application requires the .NET SDK to build and run. You can download it from the official .NET website: [Download .NET](https://dotnet.microsoft.com/download/dotnet).\n- **C# Compiler**: The C# compiler is part of the .NET SDK.\n- **Git**: To clone the repository, Git must be installed. You can get it from [Git Downloads](https://git-scm.com/downloads).\n\n## Getting Started\n\nFollow these steps to clone and run the project:\n\n### 1. Clone the Repository\n\nStart by cloning the repository to your local machine:\n\n```bash\ngit clone https://github.com/OussamaMi01/ContactApp.git\n```\n\nThen navigate to the project directory:\n\n```bash\ncd ContactApp\n```\n\n### 2. Compile and Run the Application\n\nUse the .NET Core CLI to compile and run the app:\n\n```bash\ndotnet run\n```\n\n### 3. Follow On-Screen Instructions\n\nOnce the application is running, you can follow the on-screen instructions to:\n\n- View contacts\n- Add a new contact\n- Edit an existing contact\n- Delete a contact\n\n## File Structure\n\n- **Program.cs**: Contains the main logic of the ContactApp, including the user interface and operations.\n\n## Example Usage\n\n1. **Add a Contact**: \n   - Enter the contact's first name, last name, phone number, and email. All fields are optional, but at least one field should be provided.\n   \n```bash\nEnter first name: John\nEnter last name: Doe\nEnter phone number: 123-456-7890\nEnter email: johndoe@example.com\n```\n\n2. **View Contacts**: \n   - View a list of all contacts stored in the app.\n   \n```bash\n1. John Doe - 123-456-7890 - johndoe@example.com\n```\n\n3. **Edit a Contact**: \n   - Select a contact from the list and modify its details.\n   \n```bash\nEnter the index of the contact you want to edit: 1\nEnter new first name (leave empty to keep current): John\nEnter new last name (leave empty to keep current): Doe\nEnter new phone number (leave empty to keep current): 987-654-3210\nEnter new email (leave empty to keep current): johndoe@newdomain.com\n```\n\n4. **Delete a Contact**: \n   - Select a contact by its index number and remove it from the list.\n\n```bash\nEnter the index of the contact you want to delete: 1\n```\n\n## Contributing\n\nContributions to improve the app are welcome! Feel free to fork the repository, open issues, or submit pull requests.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n## Author\n\n- **Oussama Missaoui**  \n  - [GitHub](https://github.com/OussamaMi01)  \n  - [LinkedIn](https://www.linkedin.com/in/oussama-missaoui-a48589246/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foussamami01%2Fcontactapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foussamami01%2Fcontactapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foussamami01%2Fcontactapp/lists"}