├── .gitattributes ├── .gitignore ├── Contacts ├── Contacts.BusinessLayer │ ├── Contact.cs │ ├── Contacts.BusinessLayer.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Contacts.DataAcessLayer │ ├── ContactData.cs │ ├── Contacts.DataAcessLayer.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── clsConnectionSettings.cs ├── Contacts.PresentationLayer │ ├── App.config │ ├── PresentationLayer.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Contacts.sln ├── Country.BusinessLayer │ ├── ClsCountry.cs │ └── Country.BusinessLayer.csproj ├── Country.BusinesssLayer │ ├── BusinessLayer.csproj │ ├── Contact.cs │ ├── Country.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Country.DataAccessLayer │ ├── ClsConnectionSettings.cs │ ├── ClsCountryDataAccessLayer.cs │ └── Country.DataAccessLayer.csproj └── CountryDaatAcessLayer │ ├── ConnectionSettings.cs │ ├── ContactData.cs │ ├── CountryData.cs │ ├── DataAccessLayer.csproj │ └── Properties │ └── AssemblyInfo.cs ├── ExaminationSystem ├── ExaminationSystem.MidLayer │ ├── .filenesting.json │ ├── Answer │ │ ├── ClsAnswer.cs │ │ └── ClsAnswerList.cs │ ├── ClsColorText.cs │ ├── ClsJsonSettings.cs │ ├── ClsStudent.cs │ ├── Exam │ │ ├── ClsExam.cs │ │ ├── ClsFinalExam.cs │ │ └── ClsPracticeExam.cs │ ├── ExaminationSystem.MidLayer.csproj │ ├── Question │ │ ├── ClsChooseMultiple.cs │ │ ├── ClsChooseOne.cs │ │ ├── ClsQuestion.cs │ │ ├── ClsQuestionList.cs │ │ └── ClsTrueFalse.cs │ └── Subject │ │ ├── ClsEnglish.cs │ │ ├── ClsMath.cs │ │ ├── ClsScience.cs │ │ ├── ClsSubject.cs │ │ └── ClsSubjectList.cs ├── ExaminationSystem.Question │ ├── ExaminationSystem.Ui.csproj │ └── Program.cs └── ExaminationSystem.sln ├── OrderPizza ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── OrderPizza.csproj ├── OrderPizza.sln ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Tic-Tac-Toe Game ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── O.png │ ├── X.png │ └── question-mark-96.png ├── Tic-Tac-Toe Game.csproj └── Tic-Tac-Toe Game.sln └── needForSpeed ├── needForSpeed.BusinessLayer ├── clsCar.cs ├── clsGarage.cs ├── clsRace.cs └── needForSpeed.BusinessLayer.csproj ├── needForSpeed.PresentaionLayer ├── Program.cs └── needForSpeed.PresentaionLayer.csproj └── needForSpeed.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/.gitignore -------------------------------------------------------------------------------- /Contacts/Contacts.BusinessLayer/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.BusinessLayer/Contact.cs -------------------------------------------------------------------------------- /Contacts/Contacts.BusinessLayer/Contacts.BusinessLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.BusinessLayer/Contacts.BusinessLayer.csproj -------------------------------------------------------------------------------- /Contacts/Contacts.BusinessLayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.BusinessLayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Contacts/Contacts.DataAcessLayer/ContactData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.DataAcessLayer/ContactData.cs -------------------------------------------------------------------------------- /Contacts/Contacts.DataAcessLayer/Contacts.DataAcessLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.DataAcessLayer/Contacts.DataAcessLayer.csproj -------------------------------------------------------------------------------- /Contacts/Contacts.DataAcessLayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.DataAcessLayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Contacts/Contacts.DataAcessLayer/clsConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.DataAcessLayer/clsConnectionSettings.cs -------------------------------------------------------------------------------- /Contacts/Contacts.PresentationLayer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.PresentationLayer/App.config -------------------------------------------------------------------------------- /Contacts/Contacts.PresentationLayer/PresentationLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.PresentationLayer/PresentationLayer.csproj -------------------------------------------------------------------------------- /Contacts/Contacts.PresentationLayer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.PresentationLayer/Program.cs -------------------------------------------------------------------------------- /Contacts/Contacts.PresentationLayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.PresentationLayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Contacts/Contacts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Contacts.sln -------------------------------------------------------------------------------- /Contacts/Country.BusinessLayer/ClsCountry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Country.BusinessLayer/ClsCountry.cs -------------------------------------------------------------------------------- /Contacts/Country.BusinessLayer/Country.BusinessLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Country.BusinessLayer/Country.BusinessLayer.csproj -------------------------------------------------------------------------------- /Contacts/Country.BusinesssLayer/BusinessLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Country.BusinesssLayer/BusinessLayer.csproj -------------------------------------------------------------------------------- /Contacts/Country.BusinesssLayer/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Country.BusinesssLayer/Contact.cs -------------------------------------------------------------------------------- /Contacts/Country.BusinesssLayer/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Country.BusinesssLayer/Country.cs -------------------------------------------------------------------------------- /Contacts/Country.BusinesssLayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Country.BusinesssLayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Contacts/Country.DataAccessLayer/ClsConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Country.DataAccessLayer/ClsConnectionSettings.cs -------------------------------------------------------------------------------- /Contacts/Country.DataAccessLayer/ClsCountryDataAccessLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Country.DataAccessLayer/ClsCountryDataAccessLayer.cs -------------------------------------------------------------------------------- /Contacts/Country.DataAccessLayer/Country.DataAccessLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/Country.DataAccessLayer/Country.DataAccessLayer.csproj -------------------------------------------------------------------------------- /Contacts/CountryDaatAcessLayer/ConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/CountryDaatAcessLayer/ConnectionSettings.cs -------------------------------------------------------------------------------- /Contacts/CountryDaatAcessLayer/ContactData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/CountryDaatAcessLayer/ContactData.cs -------------------------------------------------------------------------------- /Contacts/CountryDaatAcessLayer/CountryData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/CountryDaatAcessLayer/CountryData.cs -------------------------------------------------------------------------------- /Contacts/CountryDaatAcessLayer/DataAccessLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/CountryDaatAcessLayer/DataAccessLayer.csproj -------------------------------------------------------------------------------- /Contacts/CountryDaatAcessLayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Contacts/CountryDaatAcessLayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/.filenesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/.filenesting.json -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Answer/ClsAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Answer/ClsAnswer.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Answer/ClsAnswerList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Answer/ClsAnswerList.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/ClsColorText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/ClsColorText.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/ClsJsonSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/ClsJsonSettings.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/ClsStudent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/ClsStudent.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Exam/ClsExam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Exam/ClsExam.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Exam/ClsFinalExam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Exam/ClsFinalExam.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Exam/ClsPracticeExam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Exam/ClsPracticeExam.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/ExaminationSystem.MidLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/ExaminationSystem.MidLayer.csproj -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Question/ClsChooseMultiple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Question/ClsChooseMultiple.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Question/ClsChooseOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Question/ClsChooseOne.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Question/ClsQuestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Question/ClsQuestion.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Question/ClsQuestionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Question/ClsQuestionList.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Question/ClsTrueFalse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Question/ClsTrueFalse.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Subject/ClsEnglish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Subject/ClsEnglish.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Subject/ClsMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Subject/ClsMath.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Subject/ClsScience.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Subject/ClsScience.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Subject/ClsSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Subject/ClsSubject.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.MidLayer/Subject/ClsSubjectList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.MidLayer/Subject/ClsSubjectList.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.Question/ExaminationSystem.Ui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.Question/ExaminationSystem.Ui.csproj -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.Question/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.Question/Program.cs -------------------------------------------------------------------------------- /ExaminationSystem/ExaminationSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/ExaminationSystem/ExaminationSystem.sln -------------------------------------------------------------------------------- /OrderPizza/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/App.config -------------------------------------------------------------------------------- /OrderPizza/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/Form1.Designer.cs -------------------------------------------------------------------------------- /OrderPizza/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/Form1.cs -------------------------------------------------------------------------------- /OrderPizza/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/Form1.resx -------------------------------------------------------------------------------- /OrderPizza/OrderPizza.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/OrderPizza.csproj -------------------------------------------------------------------------------- /OrderPizza/OrderPizza.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/OrderPizza.sln -------------------------------------------------------------------------------- /OrderPizza/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/Program.cs -------------------------------------------------------------------------------- /OrderPizza/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OrderPizza/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OrderPizza/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/Properties/Resources.resx -------------------------------------------------------------------------------- /OrderPizza/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OrderPizza/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/OrderPizza/Properties/Settings.settings -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/App.config -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Form1.Designer.cs -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Form1.cs -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Form1.resx -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Program.cs -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Properties/Resources.resx -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Properties/Settings.settings -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Resources/O.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Resources/O.png -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Resources/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Resources/X.png -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Resources/question-mark-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Resources/question-mark-96.png -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Tic-Tac-Toe Game.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Tic-Tac-Toe Game.csproj -------------------------------------------------------------------------------- /Tic-Tac-Toe Game/Tic-Tac-Toe Game.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/Tic-Tac-Toe Game/Tic-Tac-Toe Game.sln -------------------------------------------------------------------------------- /needForSpeed/needForSpeed.BusinessLayer/clsCar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/needForSpeed/needForSpeed.BusinessLayer/clsCar.cs -------------------------------------------------------------------------------- /needForSpeed/needForSpeed.BusinessLayer/clsGarage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/needForSpeed/needForSpeed.BusinessLayer/clsGarage.cs -------------------------------------------------------------------------------- /needForSpeed/needForSpeed.BusinessLayer/clsRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/needForSpeed/needForSpeed.BusinessLayer/clsRace.cs -------------------------------------------------------------------------------- /needForSpeed/needForSpeed.BusinessLayer/needForSpeed.BusinessLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/needForSpeed/needForSpeed.BusinessLayer/needForSpeed.BusinessLayer.csproj -------------------------------------------------------------------------------- /needForSpeed/needForSpeed.PresentaionLayer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/needForSpeed/needForSpeed.PresentaionLayer/Program.cs -------------------------------------------------------------------------------- /needForSpeed/needForSpeed.PresentaionLayer/needForSpeed.PresentaionLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/needForSpeed/needForSpeed.PresentaionLayer/needForSpeed.PresentaionLayer.csproj -------------------------------------------------------------------------------- /needForSpeed/needForSpeed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/CSharp_Projects/HEAD/needForSpeed/needForSpeed.sln --------------------------------------------------------------------------------