├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CS2024 ├── B │ ├── ArithmeticalOperators │ │ ├── ArithmeticalOperators │ │ │ ├── ArithmeticalOperators.csproj │ │ │ └── Program.cs │ │ └── readme.md │ ├── AssignmentOperator │ │ ├── AssignmentOperator │ │ │ ├── AssignmentOperator.csproj │ │ │ └── Program.cs │ │ └── readme.md │ ├── Branching │ │ └── Branching │ │ │ ├── Branching.csproj │ │ │ └── Program.cs │ ├── ComparisonOperator │ │ ├── ComparisonOperator │ │ │ ├── ComparisonOperator.csproj │ │ │ └── Program.cs │ │ └── readme.md │ ├── FileSystem │ │ ├── FileSystem.sln │ │ ├── FileSystem │ │ │ ├── FileSystem.csproj │ │ │ ├── Program.cs │ │ │ └── samplefolder │ │ │ │ ├── Bootstrap5Starter │ │ │ │ ├── index.html │ │ │ │ ├── readme.md │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ │ ├── Bootstrap5TemplateStarterAmeeshaPatel │ │ │ │ ├── index.html │ │ │ │ ├── readme.md │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ │ └── readme.md │ │ └── readme.md │ ├── HelloWorld │ │ ├── HelloWorld │ │ │ ├── HelloWorld.csproj │ │ │ └── Program.cs │ │ └── readme.md │ ├── IncrementDecrementOperator │ │ ├── IncrementDecrementOperator │ │ │ ├── IncrementDecrementOperator.csproj │ │ │ └── Program.cs │ │ └── readme.md │ ├── LogicalOperator │ │ ├── LogicalOperator │ │ │ ├── LogicalOperator.csproj │ │ │ └── Program.cs │ │ └── readme.md │ ├── Loops │ │ └── Loops │ │ │ ├── Loops.csproj │ │ │ └── Program.cs │ ├── OOPBasics │ │ ├── BakeryandSweets │ │ │ ├── BakeryStore.cs │ │ │ └── BakeryandSweets.csproj │ │ ├── FamilyStuff │ │ │ ├── AbstractGrandPa.cs │ │ │ ├── Child.cs │ │ │ ├── DistantRelative.cs │ │ │ ├── FamilyMainBusiness.cs │ │ │ ├── FamilyMember.cs │ │ │ ├── FamilyNewBusiness.cs │ │ │ ├── FamilyStuff.csproj │ │ │ ├── IGrandParentActivities.cs │ │ │ ├── IParentActivities.cs │ │ │ ├── OldParent.cs │ │ │ ├── Parent.cs │ │ │ ├── ParentPartThree.cs │ │ │ ├── ParentPartTwo.cs │ │ │ └── RealGrandPa.cs │ │ ├── OOPBasics │ │ │ ├── FictionalDetective.cs │ │ │ ├── OOPBasics.csproj │ │ │ └── Program.cs │ │ ├── RecursionExamples │ │ │ ├── RecursionExamples.csproj │ │ │ ├── RecursionFibonacci.cs │ │ │ └── RecursionMultiply.cs │ │ ├── SuperHeroClassLibrary │ │ │ ├── Hero.cs │ │ │ ├── SuperHeroClassLibrary.csproj │ │ │ └── Villain.cs │ │ └── readme.md │ ├── OOPBasics2 │ │ ├── CupOfMug │ │ │ ├── CupOfMug.csproj │ │ │ ├── Mug.cs │ │ │ ├── Mug2.cs │ │ │ ├── MugColorEnum.cs │ │ │ ├── MugGeneric.cs │ │ │ ├── MugGeneric2.cs │ │ │ ├── MugOfStruct.cs │ │ │ ├── MugWithDestructor.cs │ │ │ ├── MugWithDisposable.cs │ │ │ └── RedMugOfLove.cs │ │ ├── KitchenAppliance │ │ │ ├── ElectricCooker.cs │ │ │ ├── GenericAppliance.cs │ │ │ ├── KitchenAppliance.csproj │ │ │ ├── Refrigerator.cs │ │ │ └── WaterBottle.cs │ │ ├── OOPBasics2 │ │ │ ├── OOPBasics2.csproj │ │ │ └── Program.cs │ │ └── ShopRetail │ │ │ ├── AnonymousEmployee.cs │ │ │ ├── ComplaintTrigger.cs │ │ │ ├── HandleCustomerComplaint.cs │ │ │ ├── ShopRetail.csproj │ │ │ └── WareHouse.cs │ ├── OOPBasics3 │ │ ├── ArrayGeneratorHelper │ │ │ ├── ArrayGeneratorHelper.csproj │ │ │ └── GenerateArrayUsingRandom.cs │ │ └── OOPBasics3 │ │ │ ├── OOPBasics3.csproj │ │ │ └── Program.cs │ ├── OOPBasics4 │ │ ├── ListGeneratorHelper │ │ │ ├── GenerateListUsingRandom.cs │ │ │ └── ListGeneratorHelper.csproj │ │ └── OOPBasics4 │ │ │ ├── OOPBasics4.csproj │ │ │ └── Program.cs │ ├── OOPBasics5 │ │ ├── CollectionsProvider │ │ │ ├── CollectionsOne.cs │ │ │ ├── CollectionsProvider.csproj │ │ │ ├── SuperHero.cs │ │ │ └── SuperHero2.cs │ │ └── OOPBasics5 │ │ │ ├── OOPBasics5.csproj │ │ │ └── Program.cs │ ├── OOPBasics6 │ │ └── OOPBasics6 │ │ │ ├── OOPBasics6.csproj │ │ │ └── Program.cs │ ├── PrimitiveTypes │ │ ├── PrimitiveTypes │ │ │ ├── PrimitiveTypes.csproj │ │ │ └── Program.cs │ │ └── readme.md │ ├── StringConcatenationOperator │ │ ├── StringConcatenationOperator │ │ │ ├── Program.cs │ │ │ └── StringConcatenationOperator.csproj │ │ └── readme.md │ ├── SystemConsole │ │ ├── SystemConsole │ │ │ ├── Program.cs │ │ │ └── SystemConsole.csproj │ │ └── readme.md │ ├── TernaryOperator │ │ ├── TernaryOperator │ │ │ ├── Program.cs │ │ │ └── TernaryOperator.csproj │ │ └── readme.md │ ├── Variables │ │ ├── Variables │ │ │ ├── Program.cs │ │ │ └── Variables.csproj │ │ └── readme.md │ └── readme.md ├── MS │ ├── APIProjectFeb202024 │ │ ├── MVCWebApp │ │ │ ├── Controllers │ │ │ │ ├── ComicBookController.cs │ │ │ │ └── HomeController.cs │ │ │ ├── DTOs │ │ │ │ ├── ComicBookDTO.cs │ │ │ │ ├── RequestDTO.cs │ │ │ │ └── ResponseDTO.cs │ │ │ ├── MVCWebApp.csproj │ │ │ ├── Models │ │ │ │ └── ErrorViewModel.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Service │ │ │ │ ├── BaseService.cs │ │ │ │ ├── ComicBookService.cs │ │ │ │ └── IService │ │ │ │ │ ├── IBaseService.cs │ │ │ │ │ └── IComicBookService.cs │ │ │ ├── Utility │ │ │ │ └── SD.cs │ │ │ ├── Views │ │ │ │ ├── ComicBook │ │ │ │ │ ├── ComicBookCreate.cshtml │ │ │ │ │ ├── ComicBookDelete.cshtml │ │ │ │ │ └── ComicBookIndex.cshtml │ │ │ │ ├── Home │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ └── Privacy.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ ├── WebAPI │ │ │ ├── Config │ │ │ │ └── MappingConfig.cs │ │ │ ├── Controllers │ │ │ │ ├── ComicBookAPIController.cs │ │ │ │ └── WeatherForecastController.cs │ │ │ ├── DTOs │ │ │ │ ├── ComicBookDTO.cs │ │ │ │ └── ResponseDTO.cs │ │ │ ├── Data │ │ │ │ └── AppDBContext.cs │ │ │ ├── LocalDatabase.db │ │ │ ├── LocalDatabase.db-shm │ │ │ ├── LocalDatabase.db-wal │ │ │ ├── Migrations │ │ │ │ ├── 20240220141116_MigrationOne.Designer.cs │ │ │ │ ├── 20240220141116_MigrationOne.cs │ │ │ │ ├── 20240220145153_MigrationTwo.Designer.cs │ │ │ │ ├── 20240220145153_MigrationTwo.cs │ │ │ │ ├── 20240220145629_MigrationThree.Designer.cs │ │ │ │ ├── 20240220145629_MigrationThree.cs │ │ │ │ └── AppDBContextModelSnapshot.cs │ │ │ ├── Models │ │ │ │ └── ComicBook.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── WeatherForecast.cs │ │ │ ├── WebAPI.csproj │ │ │ ├── WebAPI.http │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ └── readme.md │ ├── Consuming3rdPartyAPI │ │ ├── Consuming3rdPartyAPI │ │ │ ├── Consuming3rdPartyAPI.csproj │ │ │ ├── Helpers │ │ │ │ └── DisplayHelper.cs │ │ │ ├── POCOs │ │ │ │ └── NasaapodResponseDto.cs │ │ │ └── Program.cs │ │ └── readme.md │ ├── EntityFrameWorkDemo │ │ ├── EFMSSQLServerDemo │ │ │ ├── DatabaseContext │ │ │ │ └── KiteDBContext.cs │ │ │ ├── EFMSSQLServerDemo.csproj │ │ │ ├── Migrations │ │ │ │ ├── 20210422074845_InitialCreate.Designer.cs │ │ │ │ ├── 20210422074845_InitialCreate.cs │ │ │ │ └── KiteDBContextModelSnapshot.cs │ │ │ ├── Model │ │ │ │ └── Kite.cs │ │ │ ├── Program.cs │ │ │ └── readme.md │ │ ├── EFSQLiteDemo │ │ │ ├── DatabaseContext │ │ │ │ └── KiteDBContext.cs │ │ │ ├── EFSQLiteDemo.csproj │ │ │ ├── EFSQLiteDemo1.db │ │ │ ├── EFSQLiteUnitTests │ │ │ │ ├── EFSQLiteUnitTests.csproj │ │ │ │ ├── GetKiteTestOne.cs │ │ │ │ └── UnitTest1.cs │ │ │ ├── Enums │ │ │ │ └── ColorEnum.cs │ │ │ ├── Interfaces │ │ │ │ └── IGetKite.cs │ │ │ ├── Migrations │ │ │ │ ├── 20240429111119_InitialCreate.Designer.cs │ │ │ │ ├── 20240429111119_InitialCreate.cs │ │ │ │ └── KiteDBContextModelSnapshot.cs │ │ │ ├── Model │ │ │ │ ├── Kite.cs │ │ │ │ └── KiteUpdateOctober4th.cs │ │ │ ├── POCO │ │ │ │ └── GetKiteOne.cs │ │ │ ├── Program.cs │ │ │ └── readme.md │ │ ├── EFSQLiteDemoManytoMany │ │ │ ├── EFSQLiteDemoManytoMany.sln │ │ │ ├── EFSQLiteDemoManytoMany │ │ │ │ ├── EFSQLiteDemo1.db │ │ │ │ ├── EFSQLiteDemoManytoMany.csproj │ │ │ │ ├── Migrations │ │ │ │ │ ├── 20250303070638_FirstRun.Designer.cs │ │ │ │ │ ├── 20250303070638_FirstRun.cs │ │ │ │ │ └── ManyDBContextModelSnapshot.cs │ │ │ │ └── Program.cs │ │ │ └── readme.md │ │ └── readme.md │ ├── Mango-TillSection5 │ │ ├── Mango.Services.AuthAPI │ │ │ ├── Controllers │ │ │ │ ├── AuthAPIController.cs │ │ │ │ └── WeatherForecastController.cs │ │ │ ├── Data │ │ │ │ └── AppDBContext.cs │ │ │ ├── LocalDatabase.db │ │ │ ├── LocalDatabase.db-shm │ │ │ ├── LocalDatabase.db-wal │ │ │ ├── Mango.Services.AuthAPI.csproj │ │ │ ├── Mango.Services.AuthAPI.http │ │ │ ├── Migrations │ │ │ │ ├── 20240218143338_AddIdentityTables1.Designer.cs │ │ │ │ ├── 20240218143338_AddIdentityTables1.cs │ │ │ │ ├── 20240218144640_AddIdentityTables2AddUserName.Designer.cs │ │ │ │ ├── 20240218144640_AddIdentityTables2AddUserName.cs │ │ │ │ └── AppDBContextModelSnapshot.cs │ │ │ ├── Models │ │ │ │ ├── ApplicationUser.cs │ │ │ │ └── DTO │ │ │ │ │ ├── JwtOptions.cs │ │ │ │ │ ├── LoginRequestDto.cs │ │ │ │ │ ├── LoginResponseDto.cs │ │ │ │ │ ├── RegistrationRequestDto.cs │ │ │ │ │ ├── ResponseDTO.cs │ │ │ │ │ └── UserDto.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Service │ │ │ │ ├── AuthService.cs │ │ │ │ ├── IService │ │ │ │ │ ├── IAuthService.cs │ │ │ │ │ └── IJwtTokenGenerator.cs │ │ │ │ └── JwtTokenGenerator.cs │ │ │ ├── WeatherForecast.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── Mango.Services.CouponAPI │ │ │ ├── Controllers │ │ │ │ ├── CouponAPIController.cs │ │ │ │ └── WeatherForecastController.cs │ │ │ ├── Data │ │ │ │ └── AppDBContext.cs │ │ │ ├── LocalDatabase.db │ │ │ ├── LocalDatabase.db-shm │ │ │ ├── LocalDatabase.db-wal │ │ │ ├── Mango.Services.CouponAPI.csproj │ │ │ ├── Mango.Services.CouponAPI.http │ │ │ ├── MappingConfig.cs │ │ │ ├── Migrations │ │ │ │ ├── 20240207095419_InitialCreate.Designer.cs │ │ │ │ ├── 20240207095419_InitialCreate.cs │ │ │ │ ├── 20240207133201_SeedData1.Designer.cs │ │ │ │ ├── 20240207133201_SeedData1.cs │ │ │ │ └── AppDBContextModelSnapshot.cs │ │ │ ├── Models │ │ │ │ ├── Coupon.cs │ │ │ │ └── DTO │ │ │ │ │ ├── CouponDTO.cs │ │ │ │ │ └── ResponseDTO.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── WeatherForecast.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── Mango.Web │ │ │ ├── Controllers │ │ │ │ ├── AuthController.cs │ │ │ │ ├── CouponController.cs │ │ │ │ └── HomeController.cs │ │ │ ├── Mango.Web.csproj │ │ │ ├── Models │ │ │ │ ├── CouponDTO.cs │ │ │ │ ├── ErrorViewModel.cs │ │ │ │ ├── JwtOptions.cs │ │ │ │ ├── LoginRequestDto.cs │ │ │ │ ├── LoginResponseDto.cs │ │ │ │ ├── RegistrationRequestDto.cs │ │ │ │ ├── RequestDto.cs │ │ │ │ ├── ResponseDTO.cs │ │ │ │ └── UserDto.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Service │ │ │ │ ├── AuthService.cs │ │ │ │ ├── BaseService.cs │ │ │ │ ├── CouponService.cs │ │ │ │ ├── IService │ │ │ │ │ ├── IAuthService.cs │ │ │ │ │ ├── IBaseService.cs │ │ │ │ │ ├── ICouponService.cs │ │ │ │ │ └── ITokenProvider.cs │ │ │ │ └── TokenProvider.cs │ │ │ ├── Utility │ │ │ │ └── SD.cs │ │ │ ├── Views │ │ │ │ ├── Auth │ │ │ │ │ ├── Login.cshtml │ │ │ │ │ └── Register.cshtml │ │ │ │ ├── Coupon │ │ │ │ │ ├── CouponCreate.cshtml │ │ │ │ │ ├── CouponDelete.cshtml │ │ │ │ │ └── CouponIndex.cshtml │ │ │ │ ├── Home │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Privacy.cshtml │ │ │ │ │ └── TestSimpleAuthorize.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ │ ├── _Notifications.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ └── LICENSE │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ ├── jquery-validation │ │ │ │ └── LICENSE.md │ │ │ │ └── jquery │ │ │ │ └── LICENSE.txt │ │ ├── Mango │ │ │ ├── Controllers │ │ │ │ └── WeatherForecastController.cs │ │ │ ├── Mango.csproj │ │ │ ├── Mango.http │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── WeatherForecast.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ └── readme.md │ ├── RazorPagesHelloWorld │ │ ├── .devcontainer │ │ │ └── devcontainer.json │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── CODE_OF_CONDUCT.md │ │ ├── ContosoPizza.sln │ │ ├── ContosoPizza │ │ │ ├── ContosoPizza.csproj │ │ │ ├── ContosoPizza.db │ │ │ ├── ContosoPizza.db-shm │ │ │ ├── ContosoPizza.db-wal │ │ │ ├── Data │ │ │ │ └── PizzaContext.cs │ │ │ ├── Migrations │ │ │ │ ├── 20230501213855_InitialCreate.Designer.cs │ │ │ │ ├── 20230501213855_InitialCreate.cs │ │ │ │ └── PizzaContextModelSnapshot.cs │ │ │ ├── Models │ │ │ │ └── Pizza.cs │ │ │ ├── Pages │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── PizzaList.cshtml │ │ │ │ ├── PizzaList.cshtml.cs │ │ │ │ ├── Privacy.cshtml │ │ │ │ ├── Privacy.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Services │ │ │ │ └── PizzaService.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ └── site.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ └── site.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ ├── LICENSE │ │ ├── LICENSE-CODE │ │ ├── README.md │ │ └── SECURITY.md │ ├── WebAPIProjectInMemory │ │ ├── WebAPIProjectInMemory.sln │ │ ├── WebAPIProjectInMemory │ │ │ ├── Controllers │ │ │ │ ├── PizzaController.cs │ │ │ │ └── WeatherForecastController.cs │ │ │ ├── Models │ │ │ │ └── Pizza.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Services │ │ │ │ └── PizzaService.cs │ │ │ ├── WeatherForecast.cs │ │ │ ├── WebAPIProjectInMemory.csproj │ │ │ ├── WebAPIProjectInMemory.http │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ └── readme.md │ └── readme.md ├── TD │ ├── DebuggingHelloWorld │ │ ├── DebuggingHelloWorld.sln │ │ ├── DebuggingHelloWorld │ │ │ ├── DebuggingHelloWorld.csproj │ │ │ └── Program.cs │ │ └── readme.md │ ├── TestingHelloWorld │ │ ├── TestProject1 │ │ │ ├── CalculatorTests.cs │ │ │ └── TestProject1.csproj │ │ ├── TestingHelloWorld.sln │ │ ├── TestingHelloWorld │ │ │ ├── Calculator.cs │ │ │ ├── Program.cs │ │ │ └── TestingHelloWorld.csproj │ │ └── readme.md │ └── readme.md └── readme.md ├── CS2025 ├── AzFunctionHWJan282025 │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── AzFunctionHWJan282025.csproj │ ├── AzFunctionHWJan282025.sln │ ├── HelloWorld.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── host.json │ ├── local.settings.json │ └── readme.md ├── LoggingWithEFCoreSQLite │ ├── LoggingWithEFCoreSQLite.sln │ ├── LoggingWithEFCoreSQLite │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ ├── DB │ │ │ ├── LogItem.cs │ │ │ └── LoggerDBContext.cs │ │ ├── LoggingWithEFCoreSQLite.csproj │ │ ├── LoggingWithEFCoreSQLite.http │ │ ├── Migrations │ │ │ ├── 20250111083929_LogInitialCreate.Designer.cs │ │ │ ├── 20250111083929_LogInitialCreate.cs │ │ │ └── LoggerDBContextModelSnapshot.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── logger.db │ │ ├── logger.db-shm │ │ └── logger.db-wal │ └── readme.md ├── QuizOneMar192025 │ ├── QuizOneMar192025.sln │ ├── QuizOneMar192025 │ │ ├── Controllers │ │ │ ├── HomeController.cs │ │ │ └── QuizController.cs │ │ ├── Models │ │ │ ├── Answer.cs │ │ │ ├── ErrorViewModel.cs │ │ │ └── Question.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── QuizOneMar192025.csproj │ │ ├── ViewModels │ │ │ └── QuizViewModel.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── Index.cshtml │ │ │ │ └── Privacy.cshtml │ │ │ ├── Quiz │ │ │ │ ├── Index.cshtml │ │ │ │ └── Results.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ └── site.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ └── readme.md ├── SerilogSQLite │ ├── SerilogSQLite.sln │ ├── SerilogSQLite │ │ ├── Controllers │ │ │ ├── LoggingController.cs │ │ │ └── WeatherForecastController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SerilogSQLite.csproj │ │ ├── SerilogSQLite.http │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── readme.md └── readme.md ├── DesignPatterns ├── DesignPatterns.sln ├── DesignPatterns │ ├── Controllers │ │ ├── AdapterController.cs │ │ ├── BuilderController.cs │ │ ├── CommandController.cs │ │ ├── DecoratorController.cs │ │ ├── FacadeController.cs │ │ ├── FactoryController.cs │ │ ├── ObserverController.cs │ │ ├── SingletonController.cs │ │ ├── StrategyController.cs │ │ └── WeatherForecastController.cs │ ├── DesignPatterns.csproj │ ├── DesignPatterns.http │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json └── readme.md ├── FreeCodeCampCSharp ├── ArrayHelperMethods │ ├── ArrayHelperMethods.sln │ └── ArrayHelperMethods │ │ ├── ArrayHelperMethods.csproj │ │ └── Program.cs ├── BasicOperationsNumbers │ ├── BasicOperationsNumbers.sln │ └── BasicOperationsNumbers │ │ ├── BasicOperationsNumbers.csproj │ │ └── Program.cs ├── BooleanExpressions │ ├── BooleanExpressions.sln │ └── BooleanExpressions │ │ ├── BooleanExpressions.csproj │ │ └── Program.cs ├── BranchFlow │ ├── BranchFlow.sln │ └── BranchFlow │ │ ├── BranchFlow.csproj │ │ └── Program.cs ├── Branching-Challenge │ ├── Branching-Challenge.sln │ └── Branching-Challenge │ │ ├── Branching-Challenge.csproj │ │ └── Program.cs ├── Branching-Guided │ ├── Branching-Guided.sln │ └── Branching-Guided │ │ ├── Branching-Guided.csproj │ │ └── Program.cs ├── CallMethods │ ├── CallMethods.sln │ └── CallMethods │ │ ├── CallMethods.csproj │ │ └── Program.cs ├── ConvertDataType │ ├── ConvertDataType.sln │ └── ConvertDataType │ │ ├── ConvertDataType.csproj │ │ └── Program.cs ├── CreateThrowExceptions │ ├── CreateThrowExceptions.sln │ └── CreateThrowExceptions │ │ ├── CreateThrowExceptions.csproj │ │ └── Program.cs ├── DataType │ ├── DataType.sln │ └── DataType │ │ ├── DataType.csproj │ │ └── Program.cs ├── Debug-Challenge │ ├── Debug-Challenge.sln │ └── Debug-Challenge │ │ ├── Debug-Challenge.csproj │ │ └── Program.cs ├── Debug-Guided │ ├── Debug-Guided.sln │ └── Debug-Guided │ │ ├── Debug-Guided.csproj │ │ └── Program.cs ├── DecisionLogic │ ├── DecisionLogic.sln │ └── DecisionLogic │ │ ├── DecisionLogic.csproj │ │ └── Program.cs ├── ExceptionHandling │ ├── ExceptionHandling.sln │ └── ExceptionHandling │ │ ├── ExceptionHandling.csproj │ │ └── Program.cs ├── FirstCSharpCode │ ├── FirstCSharpCode.sln │ └── FirstCSharpCode │ │ ├── FirstCSharpCode.csproj │ │ └── Program.cs ├── FormatAlphaNumeric │ ├── FormatAlphaNumeric.sln │ └── FormatAlphaNumeric │ │ ├── FormatAlphaNumeric.csproj │ │ └── Program.cs ├── GPA │ ├── GPA.sln │ └── GPA │ │ ├── GPA.csproj │ │ └── Program.cs ├── Iterate │ ├── Iterate.sln │ └── Iterate │ │ ├── Iterate.csproj │ │ └── Program.cs ├── Iterate2 │ ├── Iterate2.sln │ └── Iterate2 │ │ ├── Iterate2.csproj │ │ └── Program.cs ├── LoopingLogic │ ├── LoopingLogic.sln │ └── LoopingLogic │ │ ├── LoopingLogic.csproj │ │ └── Program.cs ├── Method │ ├── Method.sln │ └── Method │ │ ├── Method.csproj │ │ └── Program.cs ├── MethodParameters │ ├── MethodParameters.sln │ └── MethodParameters │ │ ├── MethodParameters.csproj │ │ └── Program.cs ├── MethodReturnValues │ ├── MethodReturnValues.sln │ └── MethodReturnValues │ │ ├── MethodReturnValues.csproj │ │ └── Program.cs ├── MiniGame-Challenge │ ├── MiniGame-Challenge.sln │ └── MiniGame-Challenge │ │ ├── MiniGame-Challenge.csproj │ │ └── Program.cs ├── ProcessArrayData-Challenge │ ├── ProcessArrayData-Challenge.sln │ └── ProcessArrayData-Challenge │ │ ├── ProcessArrayData-Challenge.csproj │ │ └── Program.cs ├── ProcessArrayData-Guided │ ├── ProcessArrayData-Guided.sln │ └── ProcessArrayData-Guided │ │ ├── ProcessArrayData-Guided.csproj │ │ └── Program.cs ├── ReadableCode │ ├── ReadableCode.sln │ └── ReadableCode │ │ ├── Program.cs │ │ └── ReadableCode.csproj ├── StoreRetrieve │ ├── StoreRetrieve.sln │ └── StoreRetrieve │ │ ├── Program.cs │ │ └── StoreRetrieve.csproj ├── StringFormatting │ ├── StringFormatting.sln │ └── StringFormatting │ │ ├── Program.cs │ │ └── StringFormatting.csproj ├── StringMethods │ ├── StringMethods.sln │ └── StringMethods │ │ ├── Program.cs │ │ └── StringMethods.csproj ├── StudentGrades │ ├── StudentGrades.sln │ └── StudentGrades │ │ ├── Program.cs │ │ └── StudentGrades.csproj ├── VariableData-Challenge │ ├── VariableData-Challenge.sln │ └── VariableData-Challenge │ │ ├── Program.cs │ │ └── VariableData-Challenge.csproj ├── VariableData-Guided │ ├── VariableData-Guided.sln │ └── VariableData-Guided │ │ ├── Program.cs │ │ └── VariableData-Guided.csproj ├── VariableScope │ ├── VariableScope.sln │ └── VariableScope │ │ ├── Program.cs │ │ └── VariableScope.csproj ├── Zoo-Guided │ ├── Zoo-Guided.sln │ └── Zoo-Guided │ │ ├── Program.cs │ │ └── Zoo-Guided.csproj ├── foundational-c-sharp-with-microsoft-certification-exam.txt └── readme.md ├── InterviewPrep ├── ADONET.md ├── ASP-NET-Web.md ├── AgileMethodology.md ├── Angular-PartTwo.md ├── Angular.md ├── Azure-Cloud-Fundamentals.md ├── Azure-DevOps-GitHub.md ├── Azure-Load-Balancer-VPN-AppGateway-CDN-Reference.md ├── Azure-PaaS-Services-Reference.md ├── Azure-Storage-Services-Reference.md ├── Azure-Virtual-Machines-Deep-Dive.md ├── Azure-Virtual-Network-Reference.md ├── Blazor.md ├── CSharpDotNetGeneral-PartFive.md ├── CSharpDotNetGeneral-PartFour.md ├── CSharpDotNetGeneral-PartSeven.md ├── CSharpDotNetGeneral-PartSix.md ├── CSharpDotNetGeneral-PartThree.md ├── CSharpDotNetGeneral-PartTwo.md ├── CSharpDotNetGeneral.md ├── Dapper.md ├── DesignPatterns.md ├── Docker.md ├── EntityFramework-PartTwo.md ├── EntityFramework.md ├── HTML5-and-CSS3.md ├── Hardware-Fundamentals.md ├── JavaScript-Basics.md ├── LINQ-in-CSharp.md ├── Linux-Fundamentals.md ├── MSSQL-PartTwo.md ├── MSSQL.md ├── MicroServices.md ├── Network-Fundamentals.md ├── PowerShell-Scripting-Reference.md ├── Python-Fundamentals.md ├── Razor.md ├── React.md ├── ReactJS-MoreStuff.md ├── SOLID.md ├── SQL-Programming-MySQL.md ├── Unit-Testing.md ├── WinForms.md ├── Windows-Fundamentals.md ├── Xamarin.md └── readme.md ├── LC2024 ├── LCMar102024 │ └── LCMar102024 │ │ ├── LCMar102024.csproj │ │ └── Program.cs ├── LCMar112024 │ └── LCMar112024 │ │ ├── LCMar112024.csproj │ │ └── Program.cs ├── LCMar122024 │ └── LCMar122024 │ │ ├── LCMar122024.csproj │ │ └── Program.cs ├── LCMar132024Onwards │ └── LCMar132024Onwards │ │ ├── LCMar132024Onwards.csproj │ │ └── Program.cs ├── LCMar92024 │ └── LCMar92024 │ │ ├── LCMar92024.csproj │ │ └── Program.cs ├── LeetCodeRankHistory.md └── readme.md ├── SOLIDPrinciples ├── SOLID-principles-harrymt-modified │ ├── .gitignore │ ├── LICENSE │ ├── README-HarryMT.md │ ├── README.md │ ├── Solid │ │ ├── DependencyInversion │ │ │ └── Dip.cs │ │ ├── IPrinciple.cs │ │ ├── InterfaceSegregation │ │ │ └── Isp.cs │ │ ├── Liskov │ │ │ └── Lsp.cs │ │ ├── OpenClosed │ │ │ └── Ocp.cs │ │ ├── Program.cs │ │ ├── SOLIDPrinciples.sln │ │ ├── SingleResponsibility │ │ │ └── Srp.cs │ │ ├── Solid.csproj │ │ └── Utilities.cs │ └── SolidWithSuperHeroes │ │ ├── DinSOLID.cs │ │ ├── IinSOLID.cs │ │ ├── LinSOLID.cs │ │ ├── OinSOLID.cs │ │ ├── Program.cs │ │ ├── SOLIDPrinciplesSuperHeroes.sln │ │ ├── SinSOLID.cs │ │ ├── SolidWithSuperHeroes.csproj │ │ └── readme.md ├── SOLID-principles-harrymt-original-untouched │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ └── Solid │ │ ├── DependencyInversion │ │ └── Dip.cs │ │ ├── IPrinciple.cs │ │ ├── InterfaceSegregation │ │ └── Isp.cs │ │ ├── Liskov │ │ └── Lsp.cs │ │ ├── OpenClosed │ │ └── Ocp.cs │ │ ├── Program.cs │ │ ├── SingleResponsibility │ │ └── Srp.cs │ │ ├── Solid.csproj │ │ └── Utilities.cs └── readme.md ├── SchoolStyleTeaching-OOPS ├── SchoolStyleTeaching-OOPS.sln └── SchoolStyleTeaching-OOPS │ ├── Program.cs │ └── SchoolStyleTeaching-OOPS.csproj ├── docs └── readme.md └── readme.md /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/.gitignore -------------------------------------------------------------------------------- /CS2024/B/ArithmeticalOperators/ArithmeticalOperators/ArithmeticalOperators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/ArithmeticalOperators/ArithmeticalOperators/ArithmeticalOperators.csproj -------------------------------------------------------------------------------- /CS2024/B/ArithmeticalOperators/ArithmeticalOperators/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/ArithmeticalOperators/ArithmeticalOperators/Program.cs -------------------------------------------------------------------------------- /CS2024/B/ArithmeticalOperators/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/ArithmeticalOperators/readme.md -------------------------------------------------------------------------------- /CS2024/B/AssignmentOperator/AssignmentOperator/AssignmentOperator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/AssignmentOperator/AssignmentOperator/AssignmentOperator.csproj -------------------------------------------------------------------------------- /CS2024/B/AssignmentOperator/AssignmentOperator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/AssignmentOperator/AssignmentOperator/Program.cs -------------------------------------------------------------------------------- /CS2024/B/AssignmentOperator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/AssignmentOperator/readme.md -------------------------------------------------------------------------------- /CS2024/B/Branching/Branching/Branching.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/Branching/Branching/Branching.csproj -------------------------------------------------------------------------------- /CS2024/B/Branching/Branching/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/Branching/Branching/Program.cs -------------------------------------------------------------------------------- /CS2024/B/ComparisonOperator/ComparisonOperator/ComparisonOperator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/ComparisonOperator/ComparisonOperator/ComparisonOperator.csproj -------------------------------------------------------------------------------- /CS2024/B/ComparisonOperator/ComparisonOperator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/ComparisonOperator/ComparisonOperator/Program.cs -------------------------------------------------------------------------------- /CS2024/B/ComparisonOperator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/ComparisonOperator/readme.md -------------------------------------------------------------------------------- /CS2024/B/FileSystem/FileSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/FileSystem/FileSystem.sln -------------------------------------------------------------------------------- /CS2024/B/FileSystem/FileSystem/FileSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/FileSystem/FileSystem/FileSystem.csproj -------------------------------------------------------------------------------- /CS2024/B/FileSystem/FileSystem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/FileSystem/FileSystem/Program.cs -------------------------------------------------------------------------------- /CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5Starter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5Starter/index.html -------------------------------------------------------------------------------- /CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5Starter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5Starter/readme.md -------------------------------------------------------------------------------- /CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5Starter/script.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World") 2 | 3 | -------------------------------------------------------------------------------- /CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5Starter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5Starter/style.css -------------------------------------------------------------------------------- /CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5TemplateStarterAmeeshaPatel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5TemplateStarterAmeeshaPatel/readme.md -------------------------------------------------------------------------------- /CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5TemplateStarterAmeeshaPatel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5TemplateStarterAmeeshaPatel/script.js -------------------------------------------------------------------------------- /CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5TemplateStarterAmeeshaPatel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/FileSystem/FileSystem/samplefolder/Bootstrap5TemplateStarterAmeeshaPatel/style.css -------------------------------------------------------------------------------- /CS2024/B/FileSystem/FileSystem/samplefolder/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/FileSystem/FileSystem/samplefolder/readme.md -------------------------------------------------------------------------------- /CS2024/B/FileSystem/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/FileSystem/readme.md -------------------------------------------------------------------------------- /CS2024/B/HelloWorld/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/HelloWorld/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /CS2024/B/HelloWorld/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/HelloWorld/HelloWorld/Program.cs -------------------------------------------------------------------------------- /CS2024/B/HelloWorld/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/HelloWorld/readme.md -------------------------------------------------------------------------------- /CS2024/B/IncrementDecrementOperator/IncrementDecrementOperator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/IncrementDecrementOperator/IncrementDecrementOperator/Program.cs -------------------------------------------------------------------------------- /CS2024/B/IncrementDecrementOperator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/IncrementDecrementOperator/readme.md -------------------------------------------------------------------------------- /CS2024/B/LogicalOperator/LogicalOperator/LogicalOperator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/LogicalOperator/LogicalOperator/LogicalOperator.csproj -------------------------------------------------------------------------------- /CS2024/B/LogicalOperator/LogicalOperator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/LogicalOperator/LogicalOperator/Program.cs -------------------------------------------------------------------------------- /CS2024/B/LogicalOperator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/LogicalOperator/readme.md -------------------------------------------------------------------------------- /CS2024/B/Loops/Loops/Loops.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/Loops/Loops/Loops.csproj -------------------------------------------------------------------------------- /CS2024/B/Loops/Loops/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/Loops/Loops/Program.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/BakeryandSweets/BakeryStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/BakeryandSweets/BakeryStore.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/BakeryandSweets/BakeryandSweets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/BakeryandSweets/BakeryandSweets.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/AbstractGrandPa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/AbstractGrandPa.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/Child.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/Child.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/DistantRelative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/DistantRelative.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/FamilyMainBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/FamilyMainBusiness.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/FamilyMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/FamilyMember.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/FamilyNewBusiness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/FamilyNewBusiness.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/FamilyStuff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/FamilyStuff.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/IGrandParentActivities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/IGrandParentActivities.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/IParentActivities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/IParentActivities.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/OldParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/OldParent.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/Parent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/Parent.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/ParentPartThree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/ParentPartThree.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/ParentPartTwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/ParentPartTwo.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/FamilyStuff/RealGrandPa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/FamilyStuff/RealGrandPa.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/OOPBasics/FictionalDetective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/OOPBasics/FictionalDetective.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/OOPBasics/OOPBasics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/OOPBasics/OOPBasics.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/OOPBasics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/OOPBasics/Program.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/RecursionExamples/RecursionExamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/RecursionExamples/RecursionExamples.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/RecursionExamples/RecursionFibonacci.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/RecursionExamples/RecursionFibonacci.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/RecursionExamples/RecursionMultiply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/RecursionExamples/RecursionMultiply.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/SuperHeroClassLibrary/Hero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/SuperHeroClassLibrary/Hero.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/SuperHeroClassLibrary/SuperHeroClassLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/SuperHeroClassLibrary/SuperHeroClassLibrary.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/SuperHeroClassLibrary/Villain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/SuperHeroClassLibrary/Villain.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics/readme.md -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/CupOfMug/CupOfMug.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/CupOfMug/CupOfMug.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/CupOfMug/Mug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/CupOfMug/Mug.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/CupOfMug/Mug2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/CupOfMug/Mug2.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/CupOfMug/MugColorEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/CupOfMug/MugColorEnum.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/CupOfMug/MugGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/CupOfMug/MugGeneric.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/CupOfMug/MugGeneric2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/CupOfMug/MugGeneric2.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/CupOfMug/MugOfStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/CupOfMug/MugOfStruct.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/CupOfMug/MugWithDestructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/CupOfMug/MugWithDestructor.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/CupOfMug/MugWithDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/CupOfMug/MugWithDisposable.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/CupOfMug/RedMugOfLove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/CupOfMug/RedMugOfLove.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/KitchenAppliance/ElectricCooker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/KitchenAppliance/ElectricCooker.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/KitchenAppliance/GenericAppliance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/KitchenAppliance/GenericAppliance.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/KitchenAppliance/KitchenAppliance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/KitchenAppliance/KitchenAppliance.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/KitchenAppliance/Refrigerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/KitchenAppliance/Refrigerator.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/KitchenAppliance/WaterBottle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/KitchenAppliance/WaterBottle.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/OOPBasics2/OOPBasics2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/OOPBasics2/OOPBasics2.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/OOPBasics2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/OOPBasics2/Program.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/ShopRetail/AnonymousEmployee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/ShopRetail/AnonymousEmployee.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/ShopRetail/ComplaintTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/ShopRetail/ComplaintTrigger.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/ShopRetail/HandleCustomerComplaint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/ShopRetail/HandleCustomerComplaint.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/ShopRetail/ShopRetail.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/ShopRetail/ShopRetail.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics2/ShopRetail/WareHouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics2/ShopRetail/WareHouse.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics3/ArrayGeneratorHelper/ArrayGeneratorHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics3/ArrayGeneratorHelper/ArrayGeneratorHelper.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics3/ArrayGeneratorHelper/GenerateArrayUsingRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics3/ArrayGeneratorHelper/GenerateArrayUsingRandom.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics3/OOPBasics3/OOPBasics3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics3/OOPBasics3/OOPBasics3.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics3/OOPBasics3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics3/OOPBasics3/Program.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics4/ListGeneratorHelper/GenerateListUsingRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics4/ListGeneratorHelper/GenerateListUsingRandom.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics4/ListGeneratorHelper/ListGeneratorHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics4/ListGeneratorHelper/ListGeneratorHelper.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics4/OOPBasics4/OOPBasics4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics4/OOPBasics4/OOPBasics4.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics4/OOPBasics4/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics4/OOPBasics4/Program.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics5/CollectionsProvider/CollectionsOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics5/CollectionsProvider/CollectionsOne.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics5/CollectionsProvider/CollectionsProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics5/CollectionsProvider/CollectionsProvider.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics5/CollectionsProvider/SuperHero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics5/CollectionsProvider/SuperHero.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics5/CollectionsProvider/SuperHero2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics5/CollectionsProvider/SuperHero2.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics5/OOPBasics5/OOPBasics5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics5/OOPBasics5/OOPBasics5.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics5/OOPBasics5/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics5/OOPBasics5/Program.cs -------------------------------------------------------------------------------- /CS2024/B/OOPBasics6/OOPBasics6/OOPBasics6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics6/OOPBasics6/OOPBasics6.csproj -------------------------------------------------------------------------------- /CS2024/B/OOPBasics6/OOPBasics6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/OOPBasics6/OOPBasics6/Program.cs -------------------------------------------------------------------------------- /CS2024/B/PrimitiveTypes/PrimitiveTypes/PrimitiveTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/PrimitiveTypes/PrimitiveTypes/PrimitiveTypes.csproj -------------------------------------------------------------------------------- /CS2024/B/PrimitiveTypes/PrimitiveTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/PrimitiveTypes/PrimitiveTypes/Program.cs -------------------------------------------------------------------------------- /CS2024/B/PrimitiveTypes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/PrimitiveTypes/readme.md -------------------------------------------------------------------------------- /CS2024/B/StringConcatenationOperator/StringConcatenationOperator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/StringConcatenationOperator/StringConcatenationOperator/Program.cs -------------------------------------------------------------------------------- /CS2024/B/StringConcatenationOperator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/StringConcatenationOperator/readme.md -------------------------------------------------------------------------------- /CS2024/B/SystemConsole/SystemConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/SystemConsole/SystemConsole/Program.cs -------------------------------------------------------------------------------- /CS2024/B/SystemConsole/SystemConsole/SystemConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/SystemConsole/SystemConsole/SystemConsole.csproj -------------------------------------------------------------------------------- /CS2024/B/SystemConsole/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/SystemConsole/readme.md -------------------------------------------------------------------------------- /CS2024/B/TernaryOperator/TernaryOperator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/TernaryOperator/TernaryOperator/Program.cs -------------------------------------------------------------------------------- /CS2024/B/TernaryOperator/TernaryOperator/TernaryOperator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/TernaryOperator/TernaryOperator/TernaryOperator.csproj -------------------------------------------------------------------------------- /CS2024/B/TernaryOperator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/TernaryOperator/readme.md -------------------------------------------------------------------------------- /CS2024/B/Variables/Variables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/Variables/Variables/Program.cs -------------------------------------------------------------------------------- /CS2024/B/Variables/Variables/Variables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/Variables/Variables/Variables.csproj -------------------------------------------------------------------------------- /CS2024/B/Variables/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/Variables/readme.md -------------------------------------------------------------------------------- /CS2024/B/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/B/readme.md -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Controllers/ComicBookController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Controllers/ComicBookController.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/DTOs/ComicBookDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/DTOs/ComicBookDTO.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/DTOs/RequestDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/DTOs/RequestDTO.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/DTOs/ResponseDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/DTOs/ResponseDTO.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/MVCWebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/MVCWebApp.csproj -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Service/BaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Service/BaseService.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Service/ComicBookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Service/ComicBookService.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Service/IService/IBaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Service/IService/IBaseService.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Service/IService/IComicBookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Service/IService/IComicBookService.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Utility/SD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Utility/SD.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/ComicBook/ComicBookCreate.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/ComicBook/ComicBookCreate.cshtml -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/ComicBook/ComicBookDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/ComicBook/ComicBookDelete.cshtml -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/ComicBook/ComicBookIndex.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/ComicBook/ComicBookIndex.cshtml -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/appsettings.Development.json -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/appsettings.json -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/css/site.css -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/js/site.js -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/MVCWebApp/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Config/MappingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Config/MappingConfig.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Controllers/ComicBookAPIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Controllers/ComicBookAPIController.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/DTOs/ComicBookDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/DTOs/ComicBookDTO.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/DTOs/ResponseDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/DTOs/ResponseDTO.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Data/AppDBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Data/AppDBContext.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/LocalDatabase.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/LocalDatabase.db -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/LocalDatabase.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/LocalDatabase.db-shm -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/LocalDatabase.db-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/LocalDatabase.db-wal -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220141116_MigrationOne.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220141116_MigrationOne.Designer.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220141116_MigrationOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220141116_MigrationOne.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220145153_MigrationTwo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220145153_MigrationTwo.Designer.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220145153_MigrationTwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220145153_MigrationTwo.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220145629_MigrationThree.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220145629_MigrationThree.Designer.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220145629_MigrationThree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/20240220145629_MigrationThree.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/AppDBContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Migrations/AppDBContextModelSnapshot.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Models/ComicBook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Models/ComicBook.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/WeatherForecast.cs -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/WebAPI.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/WebAPI.http -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/WebAPI/appsettings.json -------------------------------------------------------------------------------- /CS2024/MS/APIProjectFeb202024/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/APIProjectFeb202024/readme.md -------------------------------------------------------------------------------- /CS2024/MS/Consuming3rdPartyAPI/Consuming3rdPartyAPI/Consuming3rdPartyAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Consuming3rdPartyAPI/Consuming3rdPartyAPI/Consuming3rdPartyAPI.csproj -------------------------------------------------------------------------------- /CS2024/MS/Consuming3rdPartyAPI/Consuming3rdPartyAPI/Helpers/DisplayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Consuming3rdPartyAPI/Consuming3rdPartyAPI/Helpers/DisplayHelper.cs -------------------------------------------------------------------------------- /CS2024/MS/Consuming3rdPartyAPI/Consuming3rdPartyAPI/POCOs/NasaapodResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Consuming3rdPartyAPI/Consuming3rdPartyAPI/POCOs/NasaapodResponseDto.cs -------------------------------------------------------------------------------- /CS2024/MS/Consuming3rdPartyAPI/Consuming3rdPartyAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Consuming3rdPartyAPI/Consuming3rdPartyAPI/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/Consuming3rdPartyAPI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Consuming3rdPartyAPI/readme.md -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/DatabaseContext/KiteDBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/DatabaseContext/KiteDBContext.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/EFMSSQLServerDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/EFMSSQLServerDemo.csproj -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/Migrations/20210422074845_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/Migrations/20210422074845_InitialCreate.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/Migrations/KiteDBContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/Migrations/KiteDBContextModelSnapshot.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/Model/Kite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/Model/Kite.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFMSSQLServerDemo/readme.md -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/DatabaseContext/KiteDBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/DatabaseContext/KiteDBContext.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/EFSQLiteDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/EFSQLiteDemo.csproj -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/EFSQLiteDemo1.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/EFSQLiteDemo1.db -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/EFSQLiteUnitTests/EFSQLiteUnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/EFSQLiteUnitTests/EFSQLiteUnitTests.csproj -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/EFSQLiteUnitTests/GetKiteTestOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/EFSQLiteUnitTests/GetKiteTestOne.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/EFSQLiteUnitTests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/EFSQLiteUnitTests/UnitTest1.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Enums/ColorEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Enums/ColorEnum.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Interfaces/IGetKite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Interfaces/IGetKite.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Migrations/20240429111119_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Migrations/20240429111119_InitialCreate.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Migrations/KiteDBContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Migrations/KiteDBContextModelSnapshot.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Model/Kite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Model/Kite.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Model/KiteUpdateOctober4th.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Model/KiteUpdateOctober4th.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/POCO/GetKiteOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/POCO/GetKiteOne.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemo/readme.md -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemoManytoMany/EFSQLiteDemoManytoMany.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemoManytoMany/EFSQLiteDemoManytoMany.sln -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemoManytoMany/EFSQLiteDemoManytoMany/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemoManytoMany/EFSQLiteDemoManytoMany/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemoManytoMany/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/EFSQLiteDemoManytoMany/readme.md -------------------------------------------------------------------------------- /CS2024/MS/EntityFrameWorkDemo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/EntityFrameWorkDemo/readme.md -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Controllers/AuthAPIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Controllers/AuthAPIController.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Data/AppDBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Data/AppDBContext.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/LocalDatabase.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/LocalDatabase.db -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/LocalDatabase.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/LocalDatabase.db-shm -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/LocalDatabase.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Mango.Services.AuthAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Mango.Services.AuthAPI.csproj -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Mango.Services.AuthAPI.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Mango.Services.AuthAPI.http -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Migrations/AppDBContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Migrations/AppDBContextModelSnapshot.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/JwtOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/JwtOptions.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/LoginRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/LoginRequestDto.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/LoginResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/LoginResponseDto.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/RegistrationRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/RegistrationRequestDto.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/ResponseDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/ResponseDTO.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/UserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Models/DTO/UserDto.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Service/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Service/AuthService.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Service/IService/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Service/IService/IAuthService.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Service/IService/IJwtTokenGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Service/IService/IJwtTokenGenerator.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Service/JwtTokenGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/Service/JwtTokenGenerator.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/WeatherForecast.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/appsettings.Development.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.AuthAPI/appsettings.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Controllers/CouponAPIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Controllers/CouponAPIController.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Data/AppDBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Data/AppDBContext.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/LocalDatabase.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/LocalDatabase.db -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/LocalDatabase.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/LocalDatabase.db-shm -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/LocalDatabase.db-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/LocalDatabase.db-wal -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Mango.Services.CouponAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Mango.Services.CouponAPI.csproj -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Mango.Services.CouponAPI.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Mango.Services.CouponAPI.http -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/MappingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/MappingConfig.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Models/Coupon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Models/Coupon.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Models/DTO/CouponDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Models/DTO/CouponDTO.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Models/DTO/ResponseDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Models/DTO/ResponseDTO.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/WeatherForecast.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/appsettings.Development.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Services.CouponAPI/appsettings.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Controllers/AuthController.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Controllers/CouponController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Controllers/CouponController.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Mango.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Mango.Web.csproj -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Models/CouponDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Models/CouponDTO.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Models/JwtOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Models/JwtOptions.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Models/LoginRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Models/LoginRequestDto.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Models/LoginResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Models/LoginResponseDto.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Models/RegistrationRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Models/RegistrationRequestDto.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Models/RequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Models/RequestDto.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Models/ResponseDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Models/ResponseDTO.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Models/UserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Models/UserDto.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Service/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Service/AuthService.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Service/BaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Service/BaseService.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Service/CouponService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Service/CouponService.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Service/IService/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Service/IService/IAuthService.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Service/IService/IBaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Service/IService/IBaseService.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Service/IService/ICouponService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Service/IService/ICouponService.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Service/IService/ITokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Service/IService/ITokenProvider.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Service/TokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Service/TokenProvider.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Utility/SD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Utility/SD.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Auth/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Auth/Login.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Auth/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Auth/Register.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Coupon/CouponCreate.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Coupon/CouponCreate.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Coupon/CouponDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Coupon/CouponDelete.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Coupon/CouponIndex.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Coupon/CouponIndex.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Home/TestSimpleAuthorize.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Home/TestSimpleAuthorize.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Shared/_Notifications.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Shared/_Notifications.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/appsettings.Development.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/appsettings.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango/Mango.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango/Mango.csproj -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango/Mango.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango/Mango.http -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango/WeatherForecast.cs -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango/appsettings.Development.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/Mango/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/Mango/appsettings.json -------------------------------------------------------------------------------- /CS2024/MS/Mango-TillSection5/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/Mango-TillSection5/readme.md -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/.gitignore -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/.vscode/extensions.json -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/.vscode/launch.json -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/.vscode/tasks.json -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza.sln -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/ContosoPizza.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/ContosoPizza.csproj -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/ContosoPizza.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/ContosoPizza.db -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/ContosoPizza.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/ContosoPizza.db-shm -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/ContosoPizza.db-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/ContosoPizza.db-wal -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Data/PizzaContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Data/PizzaContext.cs -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Migrations/20230501213855_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Migrations/20230501213855_InitialCreate.cs -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Migrations/PizzaContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Migrations/PizzaContextModelSnapshot.cs -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Models/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Models/Pizza.cs -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Error.cshtml -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Index.cshtml -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/PizzaList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/PizzaList.cshtml -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/PizzaList.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/PizzaList.cshtml.cs -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Services/PizzaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/Services/PizzaService.cs -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/appsettings.Development.json -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/appsettings.json -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/css/site.css -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/favicon.ico -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/js/site.js -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/LICENSE -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/LICENSE-CODE -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/README.md -------------------------------------------------------------------------------- /CS2024/MS/RazorPagesHelloWorld/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/RazorPagesHelloWorld/SECURITY.md -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory.sln -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/Controllers/PizzaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/Controllers/PizzaController.cs -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/Models/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/Models/Pizza.cs -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/Program.cs -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/Services/PizzaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/Services/PizzaService.cs -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/WeatherForecast.cs -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/WebAPIProjectInMemory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/WebAPIProjectInMemory.csproj -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/WebAPIProjectInMemory.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/WebAPIProjectInMemory.http -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/appsettings.Development.json -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/WebAPIProjectInMemory/appsettings.json -------------------------------------------------------------------------------- /CS2024/MS/WebAPIProjectInMemory/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/WebAPIProjectInMemory/readme.md -------------------------------------------------------------------------------- /CS2024/MS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/MS/readme.md -------------------------------------------------------------------------------- /CS2024/TD/DebuggingHelloWorld/DebuggingHelloWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/DebuggingHelloWorld/DebuggingHelloWorld.sln -------------------------------------------------------------------------------- /CS2024/TD/DebuggingHelloWorld/DebuggingHelloWorld/DebuggingHelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/DebuggingHelloWorld/DebuggingHelloWorld/DebuggingHelloWorld.csproj -------------------------------------------------------------------------------- /CS2024/TD/DebuggingHelloWorld/DebuggingHelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/DebuggingHelloWorld/DebuggingHelloWorld/Program.cs -------------------------------------------------------------------------------- /CS2024/TD/DebuggingHelloWorld/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/DebuggingHelloWorld/readme.md -------------------------------------------------------------------------------- /CS2024/TD/TestingHelloWorld/TestProject1/CalculatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/TestingHelloWorld/TestProject1/CalculatorTests.cs -------------------------------------------------------------------------------- /CS2024/TD/TestingHelloWorld/TestProject1/TestProject1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/TestingHelloWorld/TestProject1/TestProject1.csproj -------------------------------------------------------------------------------- /CS2024/TD/TestingHelloWorld/TestingHelloWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/TestingHelloWorld/TestingHelloWorld.sln -------------------------------------------------------------------------------- /CS2024/TD/TestingHelloWorld/TestingHelloWorld/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/TestingHelloWorld/TestingHelloWorld/Calculator.cs -------------------------------------------------------------------------------- /CS2024/TD/TestingHelloWorld/TestingHelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/TestingHelloWorld/TestingHelloWorld/Program.cs -------------------------------------------------------------------------------- /CS2024/TD/TestingHelloWorld/TestingHelloWorld/TestingHelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/TestingHelloWorld/TestingHelloWorld/TestingHelloWorld.csproj -------------------------------------------------------------------------------- /CS2024/TD/TestingHelloWorld/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/TestingHelloWorld/readme.md -------------------------------------------------------------------------------- /CS2024/TD/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/TD/readme.md -------------------------------------------------------------------------------- /CS2024/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2024/readme.md -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/.vscode/extensions.json -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/.vscode/launch.json -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/.vscode/settings.json -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/.vscode/tasks.json -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/AzFunctionHWJan282025.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/AzFunctionHWJan282025.csproj -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/AzFunctionHWJan282025.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/AzFunctionHWJan282025.sln -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/HelloWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/HelloWorld.cs -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/Program.cs -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/host.json -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/local.settings.json -------------------------------------------------------------------------------- /CS2025/AzFunctionHWJan282025/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/AzFunctionHWJan282025/readme.md -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite.sln -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/DB/LogItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/DB/LogItem.cs -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/DB/LoggerDBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/DB/LoggerDBContext.cs -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite.csproj -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite.http -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/Program.cs -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/WeatherForecast.cs -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/appsettings.Development.json -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/appsettings.json -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/logger.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/logger.db -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/logger.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/logger.db-shm -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/logger.db-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/LoggingWithEFCoreSQLite/logger.db-wal -------------------------------------------------------------------------------- /CS2025/LoggingWithEFCoreSQLite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/LoggingWithEFCoreSQLite/readme.md -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025.sln -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Controllers/HomeController.cs -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Controllers/QuizController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Controllers/QuizController.cs -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Models/Answer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Models/Answer.cs -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Models/Question.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Models/Question.cs -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Program.cs -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/QuizOneMar192025.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/QuizOneMar192025.csproj -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/ViewModels/QuizViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/ViewModels/QuizViewModel.cs -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Views/Quiz/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Views/Quiz/Index.cshtml -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Views/Quiz/Results.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Views/Quiz/Results.cshtml -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/appsettings.Development.json -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/appsettings.json -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/css/site.css -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/favicon.ico -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/js/site.js -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/QuizOneMar192025/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /CS2025/QuizOneMar192025/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/QuizOneMar192025/readme.md -------------------------------------------------------------------------------- /CS2025/SerilogSQLite/SerilogSQLite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/SerilogSQLite/SerilogSQLite.sln -------------------------------------------------------------------------------- /CS2025/SerilogSQLite/SerilogSQLite/Controllers/LoggingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/SerilogSQLite/SerilogSQLite/Controllers/LoggingController.cs -------------------------------------------------------------------------------- /CS2025/SerilogSQLite/SerilogSQLite/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/SerilogSQLite/SerilogSQLite/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /CS2025/SerilogSQLite/SerilogSQLite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/SerilogSQLite/SerilogSQLite/Program.cs -------------------------------------------------------------------------------- /CS2025/SerilogSQLite/SerilogSQLite/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/SerilogSQLite/SerilogSQLite/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS2025/SerilogSQLite/SerilogSQLite/SerilogSQLite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/SerilogSQLite/SerilogSQLite/SerilogSQLite.csproj -------------------------------------------------------------------------------- /CS2025/SerilogSQLite/SerilogSQLite/SerilogSQLite.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/SerilogSQLite/SerilogSQLite/SerilogSQLite.http -------------------------------------------------------------------------------- /CS2025/SerilogSQLite/SerilogSQLite/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/SerilogSQLite/SerilogSQLite/WeatherForecast.cs -------------------------------------------------------------------------------- /CS2025/SerilogSQLite/SerilogSQLite/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/SerilogSQLite/SerilogSQLite/appsettings.Development.json -------------------------------------------------------------------------------- /CS2025/SerilogSQLite/SerilogSQLite/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/SerilogSQLite/SerilogSQLite/appsettings.json -------------------------------------------------------------------------------- /CS2025/SerilogSQLite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/SerilogSQLite/readme.md -------------------------------------------------------------------------------- /CS2025/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/CS2025/readme.md -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns.sln -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Controllers/AdapterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Controllers/AdapterController.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Controllers/BuilderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Controllers/BuilderController.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Controllers/CommandController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Controllers/CommandController.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Controllers/DecoratorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Controllers/DecoratorController.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Controllers/FacadeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Controllers/FacadeController.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Controllers/FactoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Controllers/FactoryController.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Controllers/ObserverController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Controllers/ObserverController.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Controllers/SingletonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Controllers/SingletonController.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Controllers/StrategyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Controllers/StrategyController.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/DesignPatterns.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/DesignPatterns.csproj -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/DesignPatterns.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/DesignPatterns.http -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Program.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/Properties/launchSettings.json -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/WeatherForecast.cs -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/appsettings.Development.json -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/DesignPatterns/appsettings.json -------------------------------------------------------------------------------- /DesignPatterns/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/DesignPatterns/readme.md -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ArrayHelperMethods/ArrayHelperMethods.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ArrayHelperMethods/ArrayHelperMethods.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ArrayHelperMethods/ArrayHelperMethods/ArrayHelperMethods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ArrayHelperMethods/ArrayHelperMethods/ArrayHelperMethods.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ArrayHelperMethods/ArrayHelperMethods/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ArrayHelperMethods/ArrayHelperMethods/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/BasicOperationsNumbers/BasicOperationsNumbers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/BasicOperationsNumbers/BasicOperationsNumbers.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/BasicOperationsNumbers/BasicOperationsNumbers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/BasicOperationsNumbers/BasicOperationsNumbers/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/BooleanExpressions/BooleanExpressions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/BooleanExpressions/BooleanExpressions.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/BooleanExpressions/BooleanExpressions/BooleanExpressions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/BooleanExpressions/BooleanExpressions/BooleanExpressions.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/BooleanExpressions/BooleanExpressions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/BooleanExpressions/BooleanExpressions/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/BranchFlow/BranchFlow.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/BranchFlow/BranchFlow.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/BranchFlow/BranchFlow/BranchFlow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/BranchFlow/BranchFlow/BranchFlow.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/BranchFlow/BranchFlow/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/BranchFlow/BranchFlow/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Branching-Challenge/Branching-Challenge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Branching-Challenge/Branching-Challenge.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Branching-Challenge/Branching-Challenge/Branching-Challenge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Branching-Challenge/Branching-Challenge/Branching-Challenge.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Branching-Challenge/Branching-Challenge/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Branching-Challenge/Branching-Challenge/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Branching-Guided/Branching-Guided.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Branching-Guided/Branching-Guided.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Branching-Guided/Branching-Guided/Branching-Guided.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Branching-Guided/Branching-Guided/Branching-Guided.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Branching-Guided/Branching-Guided/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Branching-Guided/Branching-Guided/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/CallMethods/CallMethods.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/CallMethods/CallMethods.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/CallMethods/CallMethods/CallMethods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/CallMethods/CallMethods/CallMethods.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/CallMethods/CallMethods/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/CallMethods/CallMethods/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ConvertDataType/ConvertDataType.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ConvertDataType/ConvertDataType.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ConvertDataType/ConvertDataType/ConvertDataType.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ConvertDataType/ConvertDataType/ConvertDataType.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ConvertDataType/ConvertDataType/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ConvertDataType/ConvertDataType/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/CreateThrowExceptions/CreateThrowExceptions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/CreateThrowExceptions/CreateThrowExceptions.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/CreateThrowExceptions/CreateThrowExceptions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/CreateThrowExceptions/CreateThrowExceptions/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/DataType/DataType.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/DataType/DataType.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/DataType/DataType/DataType.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/DataType/DataType/DataType.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/DataType/DataType/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/DataType/DataType/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Debug-Challenge/Debug-Challenge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Debug-Challenge/Debug-Challenge.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Debug-Challenge/Debug-Challenge/Debug-Challenge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Debug-Challenge/Debug-Challenge/Debug-Challenge.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Debug-Challenge/Debug-Challenge/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Debug-Challenge/Debug-Challenge/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Debug-Guided/Debug-Guided.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Debug-Guided/Debug-Guided.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Debug-Guided/Debug-Guided/Debug-Guided.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Debug-Guided/Debug-Guided/Debug-Guided.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Debug-Guided/Debug-Guided/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Debug-Guided/Debug-Guided/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/DecisionLogic/DecisionLogic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/DecisionLogic/DecisionLogic.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/DecisionLogic/DecisionLogic/DecisionLogic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/DecisionLogic/DecisionLogic/DecisionLogic.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/DecisionLogic/DecisionLogic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/DecisionLogic/DecisionLogic/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ExceptionHandling/ExceptionHandling.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ExceptionHandling/ExceptionHandling.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ExceptionHandling/ExceptionHandling/ExceptionHandling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ExceptionHandling/ExceptionHandling/ExceptionHandling.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ExceptionHandling/ExceptionHandling/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ExceptionHandling/ExceptionHandling/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/FirstCSharpCode/FirstCSharpCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/FirstCSharpCode/FirstCSharpCode.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/FirstCSharpCode/FirstCSharpCode/FirstCSharpCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/FirstCSharpCode/FirstCSharpCode/FirstCSharpCode.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/FirstCSharpCode/FirstCSharpCode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/FirstCSharpCode/FirstCSharpCode/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/FormatAlphaNumeric/FormatAlphaNumeric.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/FormatAlphaNumeric/FormatAlphaNumeric.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/FormatAlphaNumeric/FormatAlphaNumeric/FormatAlphaNumeric.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/FormatAlphaNumeric/FormatAlphaNumeric/FormatAlphaNumeric.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/FormatAlphaNumeric/FormatAlphaNumeric/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/FormatAlphaNumeric/FormatAlphaNumeric/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/GPA/GPA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/GPA/GPA.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/GPA/GPA/GPA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/GPA/GPA/GPA.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/GPA/GPA/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/GPA/GPA/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Iterate/Iterate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Iterate/Iterate.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Iterate/Iterate/Iterate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Iterate/Iterate/Iterate.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Iterate/Iterate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Iterate/Iterate/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Iterate2/Iterate2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Iterate2/Iterate2.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Iterate2/Iterate2/Iterate2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Iterate2/Iterate2/Iterate2.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Iterate2/Iterate2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Iterate2/Iterate2/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/LoopingLogic/LoopingLogic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/LoopingLogic/LoopingLogic.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/LoopingLogic/LoopingLogic/LoopingLogic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/LoopingLogic/LoopingLogic/LoopingLogic.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/LoopingLogic/LoopingLogic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/LoopingLogic/LoopingLogic/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Method/Method.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Method/Method.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Method/Method/Method.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Method/Method/Method.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Method/Method/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Method/Method/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/MethodParameters/MethodParameters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/MethodParameters/MethodParameters.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/MethodParameters/MethodParameters/MethodParameters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/MethodParameters/MethodParameters/MethodParameters.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/MethodParameters/MethodParameters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/MethodParameters/MethodParameters/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/MethodReturnValues/MethodReturnValues.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/MethodReturnValues/MethodReturnValues.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/MethodReturnValues/MethodReturnValues/MethodReturnValues.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/MethodReturnValues/MethodReturnValues/MethodReturnValues.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/MethodReturnValues/MethodReturnValues/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/MethodReturnValues/MethodReturnValues/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/MiniGame-Challenge/MiniGame-Challenge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/MiniGame-Challenge/MiniGame-Challenge.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/MiniGame-Challenge/MiniGame-Challenge/MiniGame-Challenge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/MiniGame-Challenge/MiniGame-Challenge/MiniGame-Challenge.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/MiniGame-Challenge/MiniGame-Challenge/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/MiniGame-Challenge/MiniGame-Challenge/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ProcessArrayData-Challenge/ProcessArrayData-Challenge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ProcessArrayData-Challenge/ProcessArrayData-Challenge.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ProcessArrayData-Challenge/ProcessArrayData-Challenge/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ProcessArrayData-Challenge/ProcessArrayData-Challenge/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ProcessArrayData-Guided/ProcessArrayData-Guided.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ProcessArrayData-Guided/ProcessArrayData-Guided.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ProcessArrayData-Guided/ProcessArrayData-Guided/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ProcessArrayData-Guided/ProcessArrayData-Guided/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ReadableCode/ReadableCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ReadableCode/ReadableCode.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ReadableCode/ReadableCode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ReadableCode/ReadableCode/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/ReadableCode/ReadableCode/ReadableCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/ReadableCode/ReadableCode/ReadableCode.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StoreRetrieve/StoreRetrieve.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StoreRetrieve/StoreRetrieve.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StoreRetrieve/StoreRetrieve/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StoreRetrieve/StoreRetrieve/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StoreRetrieve/StoreRetrieve/StoreRetrieve.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StoreRetrieve/StoreRetrieve/StoreRetrieve.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StringFormatting/StringFormatting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StringFormatting/StringFormatting.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StringFormatting/StringFormatting/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StringFormatting/StringFormatting/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StringFormatting/StringFormatting/StringFormatting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StringFormatting/StringFormatting/StringFormatting.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StringMethods/StringMethods.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StringMethods/StringMethods.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StringMethods/StringMethods/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StringMethods/StringMethods/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StringMethods/StringMethods/StringMethods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StringMethods/StringMethods/StringMethods.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StudentGrades/StudentGrades.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StudentGrades/StudentGrades.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StudentGrades/StudentGrades/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StudentGrades/StudentGrades/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/StudentGrades/StudentGrades/StudentGrades.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/StudentGrades/StudentGrades/StudentGrades.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/VariableData-Challenge/VariableData-Challenge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/VariableData-Challenge/VariableData-Challenge.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/VariableData-Challenge/VariableData-Challenge/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/VariableData-Challenge/VariableData-Challenge/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/VariableData-Guided/VariableData-Guided.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/VariableData-Guided/VariableData-Guided.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/VariableData-Guided/VariableData-Guided/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/VariableData-Guided/VariableData-Guided/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/VariableData-Guided/VariableData-Guided/VariableData-Guided.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/VariableData-Guided/VariableData-Guided/VariableData-Guided.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/VariableScope/VariableScope.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/VariableScope/VariableScope.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/VariableScope/VariableScope/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/VariableScope/VariableScope/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/VariableScope/VariableScope/VariableScope.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/VariableScope/VariableScope/VariableScope.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Zoo-Guided/Zoo-Guided.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Zoo-Guided/Zoo-Guided.sln -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Zoo-Guided/Zoo-Guided/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Zoo-Guided/Zoo-Guided/Program.cs -------------------------------------------------------------------------------- /FreeCodeCampCSharp/Zoo-Guided/Zoo-Guided/Zoo-Guided.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/Zoo-Guided/Zoo-Guided/Zoo-Guided.csproj -------------------------------------------------------------------------------- /FreeCodeCampCSharp/foundational-c-sharp-with-microsoft-certification-exam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/foundational-c-sharp-with-microsoft-certification-exam.txt -------------------------------------------------------------------------------- /FreeCodeCampCSharp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/FreeCodeCampCSharp/readme.md -------------------------------------------------------------------------------- /InterviewPrep/ADONET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/ADONET.md -------------------------------------------------------------------------------- /InterviewPrep/ASP-NET-Web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/ASP-NET-Web.md -------------------------------------------------------------------------------- /InterviewPrep/AgileMethodology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/AgileMethodology.md -------------------------------------------------------------------------------- /InterviewPrep/Angular-PartTwo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Angular-PartTwo.md -------------------------------------------------------------------------------- /InterviewPrep/Angular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Angular.md -------------------------------------------------------------------------------- /InterviewPrep/Azure-Cloud-Fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Azure-Cloud-Fundamentals.md -------------------------------------------------------------------------------- /InterviewPrep/Azure-DevOps-GitHub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Azure-DevOps-GitHub.md -------------------------------------------------------------------------------- /InterviewPrep/Azure-Load-Balancer-VPN-AppGateway-CDN-Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Azure-Load-Balancer-VPN-AppGateway-CDN-Reference.md -------------------------------------------------------------------------------- /InterviewPrep/Azure-PaaS-Services-Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Azure-PaaS-Services-Reference.md -------------------------------------------------------------------------------- /InterviewPrep/Azure-Storage-Services-Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Azure-Storage-Services-Reference.md -------------------------------------------------------------------------------- /InterviewPrep/Azure-Virtual-Machines-Deep-Dive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Azure-Virtual-Machines-Deep-Dive.md -------------------------------------------------------------------------------- /InterviewPrep/Azure-Virtual-Network-Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Azure-Virtual-Network-Reference.md -------------------------------------------------------------------------------- /InterviewPrep/Blazor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Blazor.md -------------------------------------------------------------------------------- /InterviewPrep/CSharpDotNetGeneral-PartFive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/CSharpDotNetGeneral-PartFive.md -------------------------------------------------------------------------------- /InterviewPrep/CSharpDotNetGeneral-PartFour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/CSharpDotNetGeneral-PartFour.md -------------------------------------------------------------------------------- /InterviewPrep/CSharpDotNetGeneral-PartSeven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/CSharpDotNetGeneral-PartSeven.md -------------------------------------------------------------------------------- /InterviewPrep/CSharpDotNetGeneral-PartSix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/CSharpDotNetGeneral-PartSix.md -------------------------------------------------------------------------------- /InterviewPrep/CSharpDotNetGeneral-PartThree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/CSharpDotNetGeneral-PartThree.md -------------------------------------------------------------------------------- /InterviewPrep/CSharpDotNetGeneral-PartTwo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/CSharpDotNetGeneral-PartTwo.md -------------------------------------------------------------------------------- /InterviewPrep/CSharpDotNetGeneral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/CSharpDotNetGeneral.md -------------------------------------------------------------------------------- /InterviewPrep/Dapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Dapper.md -------------------------------------------------------------------------------- /InterviewPrep/DesignPatterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/DesignPatterns.md -------------------------------------------------------------------------------- /InterviewPrep/Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Docker.md -------------------------------------------------------------------------------- /InterviewPrep/EntityFramework-PartTwo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/EntityFramework-PartTwo.md -------------------------------------------------------------------------------- /InterviewPrep/EntityFramework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/EntityFramework.md -------------------------------------------------------------------------------- /InterviewPrep/HTML5-and-CSS3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/HTML5-and-CSS3.md -------------------------------------------------------------------------------- /InterviewPrep/Hardware-Fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Hardware-Fundamentals.md -------------------------------------------------------------------------------- /InterviewPrep/JavaScript-Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/JavaScript-Basics.md -------------------------------------------------------------------------------- /InterviewPrep/LINQ-in-CSharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/LINQ-in-CSharp.md -------------------------------------------------------------------------------- /InterviewPrep/Linux-Fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Linux-Fundamentals.md -------------------------------------------------------------------------------- /InterviewPrep/MSSQL-PartTwo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/MSSQL-PartTwo.md -------------------------------------------------------------------------------- /InterviewPrep/MSSQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/MSSQL.md -------------------------------------------------------------------------------- /InterviewPrep/MicroServices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/MicroServices.md -------------------------------------------------------------------------------- /InterviewPrep/Network-Fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Network-Fundamentals.md -------------------------------------------------------------------------------- /InterviewPrep/PowerShell-Scripting-Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/PowerShell-Scripting-Reference.md -------------------------------------------------------------------------------- /InterviewPrep/Python-Fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Python-Fundamentals.md -------------------------------------------------------------------------------- /InterviewPrep/Razor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Razor.md -------------------------------------------------------------------------------- /InterviewPrep/React.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/React.md -------------------------------------------------------------------------------- /InterviewPrep/ReactJS-MoreStuff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/ReactJS-MoreStuff.md -------------------------------------------------------------------------------- /InterviewPrep/SOLID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/SOLID.md -------------------------------------------------------------------------------- /InterviewPrep/SQL-Programming-MySQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/SQL-Programming-MySQL.md -------------------------------------------------------------------------------- /InterviewPrep/Unit-Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Unit-Testing.md -------------------------------------------------------------------------------- /InterviewPrep/WinForms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/WinForms.md -------------------------------------------------------------------------------- /InterviewPrep/Windows-Fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Windows-Fundamentals.md -------------------------------------------------------------------------------- /InterviewPrep/Xamarin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/Xamarin.md -------------------------------------------------------------------------------- /InterviewPrep/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/InterviewPrep/readme.md -------------------------------------------------------------------------------- /LC2024/LCMar102024/LCMar102024/LCMar102024.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/LCMar102024/LCMar102024/LCMar102024.csproj -------------------------------------------------------------------------------- /LC2024/LCMar102024/LCMar102024/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/LCMar102024/LCMar102024/Program.cs -------------------------------------------------------------------------------- /LC2024/LCMar112024/LCMar112024/LCMar112024.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/LCMar112024/LCMar112024/LCMar112024.csproj -------------------------------------------------------------------------------- /LC2024/LCMar112024/LCMar112024/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/LCMar112024/LCMar112024/Program.cs -------------------------------------------------------------------------------- /LC2024/LCMar122024/LCMar122024/LCMar122024.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/LCMar122024/LCMar122024/LCMar122024.csproj -------------------------------------------------------------------------------- /LC2024/LCMar122024/LCMar122024/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/LCMar122024/LCMar122024/Program.cs -------------------------------------------------------------------------------- /LC2024/LCMar132024Onwards/LCMar132024Onwards/LCMar132024Onwards.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/LCMar132024Onwards/LCMar132024Onwards/LCMar132024Onwards.csproj -------------------------------------------------------------------------------- /LC2024/LCMar132024Onwards/LCMar132024Onwards/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/LCMar132024Onwards/LCMar132024Onwards/Program.cs -------------------------------------------------------------------------------- /LC2024/LCMar92024/LCMar92024/LCMar92024.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/LCMar92024/LCMar92024/LCMar92024.csproj -------------------------------------------------------------------------------- /LC2024/LCMar92024/LCMar92024/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/LCMar92024/LCMar92024/Program.cs -------------------------------------------------------------------------------- /LC2024/LeetCodeRankHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/LeetCodeRankHistory.md -------------------------------------------------------------------------------- /LC2024/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/LC2024/readme.md -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/.gitignore -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/LICENSE -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/README-HarryMT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/README-HarryMT.md -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/README.md -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/DependencyInversion/Dip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/DependencyInversion/Dip.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/IPrinciple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/IPrinciple.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/InterfaceSegregation/Isp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/InterfaceSegregation/Isp.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/Liskov/Lsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/Liskov/Lsp.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/OpenClosed/Ocp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/OpenClosed/Ocp.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/Program.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/SOLIDPrinciples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/SOLIDPrinciples.sln -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/SingleResponsibility/Srp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/SingleResponsibility/Srp.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/Solid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/Solid.csproj -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/Solid/Utilities.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/DinSOLID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/DinSOLID.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/IinSOLID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/IinSOLID.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/LinSOLID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/LinSOLID.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/OinSOLID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/OinSOLID.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/Program.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/SinSOLID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/SinSOLID.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-modified/SolidWithSuperHeroes/readme.md -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/.gitignore -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/LICENSE -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/README.md -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/IPrinciple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/IPrinciple.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/Liskov/Lsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/Liskov/Lsp.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/OpenClosed/Ocp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/OpenClosed/Ocp.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/Program.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/Solid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/Solid.csproj -------------------------------------------------------------------------------- /SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/SOLID-principles-harrymt-original-untouched/Solid/Utilities.cs -------------------------------------------------------------------------------- /SOLIDPrinciples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SOLIDPrinciples/readme.md -------------------------------------------------------------------------------- /SchoolStyleTeaching-OOPS/SchoolStyleTeaching-OOPS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SchoolStyleTeaching-OOPS/SchoolStyleTeaching-OOPS.sln -------------------------------------------------------------------------------- /SchoolStyleTeaching-OOPS/SchoolStyleTeaching-OOPS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SchoolStyleTeaching-OOPS/SchoolStyleTeaching-OOPS/Program.cs -------------------------------------------------------------------------------- /SchoolStyleTeaching-OOPS/SchoolStyleTeaching-OOPS/SchoolStyleTeaching-OOPS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/SchoolStyleTeaching-OOPS/SchoolStyleTeaching-OOPS/SchoolStyleTeaching-OOPS.csproj -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/docs/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jay-study-nildana/CSharpForStudents/HEAD/readme.md --------------------------------------------------------------------------------