├── .gitattributes ├── .gitignore ├── AngularCoreGym ├── AngularCoreGym.Concrete │ ├── AngularCoreGym.Concrete.csproj │ ├── DatabaseContext.cs │ ├── GenerateRecepitConcrete.cs │ ├── MemberRegistrationConcrete.cs │ ├── PaymentDetailsConcrete.cs │ ├── PeriodMasterConcrete.cs │ ├── PlanMasterConcrete.cs │ ├── RenewalConcrete.cs │ ├── ReportsMaster.cs │ ├── RoleConcrete.cs │ ├── SchemeMasterConcrete.cs │ ├── UsersConcrete.cs │ └── UsersInRolesConcrete.cs ├── AngularCoreGym.Interface │ ├── AngularCoreGym.Interface.csproj │ ├── Class1.cs │ ├── IGenerateRecepit.cs │ ├── IMemberRegistration.cs │ ├── IPaymentDetails.cs │ ├── IPeriodMaster.cs │ ├── IPlanMaster.cs │ ├── IRenewal.cs │ ├── IReports.cs │ ├── IRole.cs │ ├── ISchemeMaster.cs │ ├── IUsers.cs │ └── IUsersInRoles.cs ├── AngularCoreGym.Models │ ├── AngularCoreGym.Models.csproj │ ├── DynamicExtensions.cs │ ├── MemberRegistration.cs │ ├── PaymentDetails.cs │ ├── PeriodTB.cs │ ├── PlanMaster.cs │ ├── QueryParameters.cs │ ├── QueryParametersExtensions.cs │ ├── Role.cs │ ├── SchemeMaster.cs │ ├── Users.cs │ └── UsersInRoles.cs ├── AngularCoreGym.ViewModels │ ├── AmountRequestViewModel.cs │ ├── AngularCoreGym.ViewModels.csproj │ ├── AssignRolesViewModel.cs │ ├── GenerateRecepitRequestModel.cs │ ├── GenerateRecepitViewModel.cs │ ├── LoginResponse.cs │ ├── LoginViewModel.cs │ ├── MemberDetailsReportViewModel.cs │ ├── MemberRegistrationGridModel.cs │ ├── MemberRegistrationViewModel.cs │ ├── MemberRequest.cs │ ├── MonthWiseReportViewModel.cs │ ├── MonthwiseRequestModel.cs │ ├── PaymentDetailsViewModel.cs │ ├── PlanMasterViewModel.cs │ ├── RenewalReportRequestModel.cs │ ├── RenewalReportViewModel.cs │ ├── RenewalViewModel.cs │ ├── RoleViewModel.cs │ ├── SchemeMasterViewModel.cs │ ├── UsersViewModel.cs │ ├── YearWiseRequestModel.cs │ └── YearwiseReportViewModel.cs ├── AngularCoreGym.sln └── AngularCoreGym │ ├── AngularCoreGym.csproj │ ├── ClientApp │ ├── .editorconfig │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.e2e.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── AdminDashboard │ │ │ │ ├── app.AdminDashboardComponent.html │ │ │ │ └── app.AdminDashboardComponent.ts │ │ │ ├── AssignRole │ │ │ │ ├── Models │ │ │ │ │ ├── AssignRemoveModel.ts │ │ │ │ │ └── AssignRolesViewModel.ts │ │ │ │ ├── Services │ │ │ │ │ └── app.AssignandRemoveRole.Service.ts │ │ │ │ ├── app.AllAssignRole.component.ts │ │ │ │ ├── app.AllAssignedRoles.html │ │ │ │ ├── app.AssignRole.component.ts │ │ │ │ └── app.AssignandRemoveRole.html │ │ │ ├── AuthGuard │ │ │ │ ├── AdminAuthGuardService.ts │ │ │ │ └── UserAuthGuardService.ts │ │ │ ├── Content │ │ │ │ ├── dist │ │ │ │ │ ├── css │ │ │ │ │ │ ├── sb-admin-2.css │ │ │ │ │ │ └── sb-admin-2.min.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── sb-admin-2.js │ │ │ │ │ │ └── sb-admin-2.min.js │ │ │ │ └── vendor │ │ │ │ │ ├── bootstrap-social │ │ │ │ │ ├── bootstrap-social.css │ │ │ │ │ ├── bootstrap-social.less │ │ │ │ │ └── bootstrap-social.scss │ │ │ │ │ ├── bootstrap │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ │ ├── datatables-plugins │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── datatables-responsive │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ │ ├── datatables │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ │ ├── dataTables.bootstrap.min.css │ │ │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ │ │ │ ├── dataTables.foundation.css │ │ │ │ │ │ ├── dataTables.foundation.min.css │ │ │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ │ │ ├── dataTables.jqueryui.min.css │ │ │ │ │ │ ├── dataTables.material.css │ │ │ │ │ │ ├── dataTables.material.min.css │ │ │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ │ │ ├── dataTables.semanticui.min.css │ │ │ │ │ │ ├── dataTables.uikit.css │ │ │ │ │ │ ├── dataTables.uikit.min.css │ │ │ │ │ │ ├── jquery.dataTables.css │ │ │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── Sorting icons.psd │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ │ │ │ ├── dataTables.foundation.js │ │ │ │ │ │ ├── dataTables.foundation.min.js │ │ │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ │ │ ├── dataTables.jqueryui.min.js │ │ │ │ │ │ ├── dataTables.material.js │ │ │ │ │ │ ├── dataTables.material.min.js │ │ │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ │ │ ├── dataTables.semanticui.min.js │ │ │ │ │ │ ├── dataTables.uikit.js │ │ │ │ │ │ ├── dataTables.uikit.min.js │ │ │ │ │ │ ├── jquery.dataTables.js │ │ │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ │ │ └── jquery.js │ │ │ │ │ ├── flot-tooltip │ │ │ │ │ ├── jquery.flot.tooltip.js │ │ │ │ │ ├── jquery.flot.tooltip.min.js │ │ │ │ │ └── jquery.flot.tooltip.source.js │ │ │ │ │ ├── flot │ │ │ │ │ ├── excanvas.js │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ ├── jquery.colorhelpers.js │ │ │ │ │ ├── jquery.flot.canvas.js │ │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ │ ├── jquery.flot.image.js │ │ │ │ │ ├── jquery.flot.js │ │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ │ ├── jquery.flot.time.js │ │ │ │ │ └── jquery.js │ │ │ │ │ ├── font-awesome │ │ │ │ │ ├── HELP-US-OUT.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ ├── font-awesome.css.map │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ ├── less │ │ │ │ │ │ ├── animated.less │ │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ │ ├── core.less │ │ │ │ │ │ ├── extras.less │ │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ ├── icons.less │ │ │ │ │ │ ├── larger.less │ │ │ │ │ │ ├── list.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── path.less │ │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ │ ├── screen-reader.less │ │ │ │ │ │ ├── spinning.less │ │ │ │ │ │ ├── stacked.less │ │ │ │ │ │ └── variables.less │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _animated.scss │ │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ ├── _extras.scss │ │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ ├── _larger.scss │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ │ ├── _spinning.scss │ │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ │ ├── jquery │ │ │ │ │ ├── jquery.js │ │ │ │ │ └── jquery.min.js │ │ │ │ │ ├── metisMenu │ │ │ │ │ ├── metisMenu.css │ │ │ │ │ ├── metisMenu.js │ │ │ │ │ ├── metisMenu.min.css │ │ │ │ │ └── metisMenu.min.js │ │ │ │ │ ├── morrisjs │ │ │ │ │ ├── morris.css │ │ │ │ │ ├── morris.js │ │ │ │ │ └── morris.min.js │ │ │ │ │ └── raphael │ │ │ │ │ ├── raphael.js │ │ │ │ │ └── raphael.min.js │ │ │ ├── CreateUsers │ │ │ │ ├── Models │ │ │ │ │ ├── app.UserDropdownModel.ts │ │ │ │ │ └── app.UserModel.ts │ │ │ │ ├── Services │ │ │ │ │ └── app.UserRegistration.Service.ts │ │ │ │ ├── app.AllUserRegistration.component.ts │ │ │ │ ├── app.AllUserRegistration.html │ │ │ │ ├── app.EditUserRegistration.component.ts │ │ │ │ ├── app.EditUserRegistration.html │ │ │ │ ├── app.UserRegistration.component.ts │ │ │ │ └── app.UserRegistration.html │ │ │ ├── Login │ │ │ │ ├── Models │ │ │ │ │ └── app.LoginModel.ts │ │ │ │ ├── Services │ │ │ │ │ └── app.LoginService.ts │ │ │ │ ├── app.AdminLogout.Component.ts │ │ │ │ ├── app.LoginComponent.ts │ │ │ │ ├── app.UserLogout.Component.ts │ │ │ │ └── app.login.html │ │ │ ├── MemberRegistration │ │ │ │ ├── List │ │ │ │ │ ├── Memberlist.component.html │ │ │ │ │ ├── app.MemberListComponent .ts │ │ │ │ │ ├── app.MemberViewComponent.html │ │ │ │ │ └── app.MemberViewComponent.ts │ │ │ │ ├── Models │ │ │ │ │ ├── app.MemberRegistrationGridModel.ts │ │ │ │ │ └── app.MemberRegistrationModel.ts │ │ │ │ ├── Services │ │ │ │ │ └── app.MemberRegistration.Service.ts │ │ │ │ ├── app.AllMemberRegistration.component.ts │ │ │ │ ├── app.AllMemberRegistration.html │ │ │ │ ├── app.EditMemberRegistration.component.ts │ │ │ │ ├── app.EditMemberRegistration.html │ │ │ │ ├── app.MemberRegistration.component.ts │ │ │ │ ├── app.MemberRegistration.html │ │ │ │ └── app.memberComponent.css │ │ │ ├── Payment │ │ │ │ ├── List │ │ │ │ │ ├── app.PaymentListComponent.ts │ │ │ │ │ ├── app.PaymentOverviewComponent.ts │ │ │ │ │ ├── app.PaymentViewComponent.html │ │ │ │ │ └── app.Paymentlist.component.html │ │ │ │ ├── Models │ │ │ │ │ └── app.PaymentDetailsModel.ts │ │ │ │ └── Services │ │ │ │ │ └── app.PaymentDetails.Service.ts │ │ │ ├── PeriodMaster │ │ │ │ ├── Models │ │ │ │ │ └── app.PeriodModel.ts │ │ │ │ └── Services │ │ │ │ │ └── app.Period.Service.ts │ │ │ ├── PlanMaster │ │ │ │ ├── Models │ │ │ │ │ ├── app.ActivePlanModel.ts │ │ │ │ │ ├── app.PlanMasterModel.ts │ │ │ │ │ └── app.PlanMasterViewModel.ts │ │ │ │ ├── Services │ │ │ │ │ └── app.planmaster.service.ts │ │ │ │ ├── app.EditPlan.component.html │ │ │ │ ├── app.EditPlan.component.ts │ │ │ │ ├── app.allplanmaster.component.html │ │ │ │ ├── app.allplanmaster.component.ts │ │ │ │ ├── app.planmaster.component.html │ │ │ │ └── app.planmaster.component.ts │ │ │ ├── Recepit │ │ │ │ ├── Models │ │ │ │ │ ├── app.GenerateRecepitRequestModel.ts │ │ │ │ │ └── app.GenerateRecepitViewModel.ts │ │ │ │ ├── Recepit.html │ │ │ │ ├── Services │ │ │ │ │ └── app.GenerateRecepit.Service.ts │ │ │ │ └── app.generateRecepit.Component.ts │ │ │ ├── Renewal │ │ │ │ ├── Models │ │ │ │ │ ├── app.RenewalModel.ts │ │ │ │ │ ├── app.RequestMemberModel.ts │ │ │ │ │ ├── app.RequestMemberNoModel.ts │ │ │ │ │ └── app.ResponseMemberModel.ts │ │ │ │ ├── Services │ │ │ │ │ └── app.renewal.Service.ts │ │ │ │ ├── app.Renewal.Component.ts │ │ │ │ └── app.renewalcomponent.html │ │ │ ├── Reports │ │ │ │ ├── Models │ │ │ │ │ ├── app.MemberDetailsReportViewModel.ts │ │ │ │ │ ├── app.MonthModel.ts │ │ │ │ │ ├── app.MonthWiseRequestModel.ts │ │ │ │ │ ├── app.MonthWiseResponseModel.ts │ │ │ │ │ ├── app.RenewalReportViewModel.ts │ │ │ │ │ ├── app.RenewalRequestModel.ts │ │ │ │ │ ├── app.YearModel.ts │ │ │ │ │ ├── app.YearwiseRequestModel.ts │ │ │ │ │ └── app.YearwiseResponseModel.ts │ │ │ │ ├── Services │ │ │ │ │ └── app.ReportServices.ts │ │ │ │ ├── app.MemberDetailsReport.Component.ts │ │ │ │ ├── app.MemberDetailsReport.css │ │ │ │ ├── app.MemberDetailsReport.html │ │ │ │ ├── app.MonthwiseReport.Component.ts │ │ │ │ ├── app.MonthwiseReport.html │ │ │ │ ├── app.RenewalReport.Component.ts │ │ │ │ ├── app.RenewalReport.html │ │ │ │ ├── app.YearwiseReport.Component.ts │ │ │ │ └── app.YearwiseReport.html │ │ │ ├── RoleMaster │ │ │ │ ├── Models │ │ │ │ │ └── app.RoleModel.ts │ │ │ │ ├── Services │ │ │ │ │ └── app.role.Service.ts │ │ │ │ ├── app.AllRole.component.ts │ │ │ │ ├── app.AllRole.html │ │ │ │ ├── app.EditRole.component.ts │ │ │ │ ├── app.EditRole.html │ │ │ │ ├── app.Role.component.ts │ │ │ │ └── app.Role.html │ │ │ ├── SchemeMasters │ │ │ │ ├── Models │ │ │ │ │ ├── app.SchemeDropdownModel.ts │ │ │ │ │ └── app.SchemeViewModel.ts │ │ │ │ ├── Services │ │ │ │ │ └── app.Scheme.Service.ts │ │ │ │ ├── app.AllScheme.Component.ts │ │ │ │ ├── app.AllSchemeComponent.css │ │ │ │ ├── app.AllSchemeComponent.html │ │ │ │ ├── app.EditScheme.Component.ts │ │ │ │ ├── app.EditSchemeComponent.html │ │ │ │ ├── app.Scheme.Component.ts │ │ │ │ ├── app.SchemeMaster.html │ │ │ │ └── app.SchemeModel.ts │ │ │ ├── Shared │ │ │ │ ├── PaginationModel.ts │ │ │ │ ├── PaginationService.ts │ │ │ │ ├── app.GenderModel.ts │ │ │ │ ├── constantUrl.ts │ │ │ │ └── environment.ts │ │ │ ├── UserDashboard │ │ │ │ ├── app.UserDashboardComponent.html │ │ │ │ └── app.UserDashboardComponent.ts │ │ │ ├── _layout │ │ │ │ ├── app-admin-layout.component.html │ │ │ │ ├── app-adminlayout.component.css │ │ │ │ ├── app-adminlayout.component.ts │ │ │ │ ├── app-user-layout.component.html │ │ │ │ └── app-userlayout.component.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── browserslist │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── karma.conf.js │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ ├── tsconfig.json │ └── tslint.json │ ├── Common │ ├── CustomExceptionFilterAttribute.cs │ └── EncryptionLibrary.cs │ ├── Controllers │ ├── AllActivePlanMasterController.cs │ ├── AssignRolesController.cs │ ├── AuthenticateController.cs │ ├── CreateRoleController.cs │ ├── GenerateRecepitController.cs │ ├── GetMemberNoController.cs │ ├── GetTotalAmountController.cs │ ├── MemberDetailsReportController.cs │ ├── MonthwiseReportController.cs │ ├── PaymentController.cs │ ├── PeriodController.cs │ ├── PlanMasterController.cs │ ├── RegisterMemberController.cs │ ├── RemoveRoleController.cs │ ├── RenewalController.cs │ ├── RenewalDetailsController.cs │ ├── RenewalReportController.cs │ ├── SampleDataController.cs │ ├── SchemeController.cs │ ├── SchemeDropdownController.cs │ ├── UserController.cs │ └── YearwiseReportController.cs │ ├── Models │ ├── AppSettings.cs │ └── ErrorViewModel.cs │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ └── _ViewImports.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ └── favicon.ico ├── Images ├── 1.png ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.png └── hqdefault.jpg ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/.gitignore -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/AngularCoreGym.Concrete.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/AngularCoreGym.Concrete.csproj -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/DatabaseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/DatabaseContext.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/GenerateRecepitConcrete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/GenerateRecepitConcrete.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/MemberRegistrationConcrete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/MemberRegistrationConcrete.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/PaymentDetailsConcrete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/PaymentDetailsConcrete.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/PeriodMasterConcrete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/PeriodMasterConcrete.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/PlanMasterConcrete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/PlanMasterConcrete.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/RenewalConcrete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/RenewalConcrete.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/ReportsMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/ReportsMaster.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/RoleConcrete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/RoleConcrete.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/SchemeMasterConcrete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/SchemeMasterConcrete.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/UsersConcrete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/UsersConcrete.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Concrete/UsersInRolesConcrete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Concrete/UsersInRolesConcrete.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/AngularCoreGym.Interface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/AngularCoreGym.Interface.csproj -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/Class1.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/IGenerateRecepit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/IGenerateRecepit.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/IMemberRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/IMemberRegistration.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/IPaymentDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/IPaymentDetails.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/IPeriodMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/IPeriodMaster.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/IPlanMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/IPlanMaster.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/IRenewal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/IRenewal.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/IReports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/IReports.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/IRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/IRole.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/ISchemeMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/ISchemeMaster.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/IUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/IUsers.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Interface/IUsersInRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Interface/IUsersInRoles.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/AngularCoreGym.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/AngularCoreGym.Models.csproj -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/DynamicExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/DynamicExtensions.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/MemberRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/MemberRegistration.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/PaymentDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/PaymentDetails.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/PeriodTB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/PeriodTB.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/PlanMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/PlanMaster.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/QueryParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/QueryParameters.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/QueryParametersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/QueryParametersExtensions.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/Role.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/SchemeMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/SchemeMaster.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/Users.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.Models/UsersInRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.Models/UsersInRoles.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/AmountRequestViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/AmountRequestViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/AngularCoreGym.ViewModels.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/AngularCoreGym.ViewModels.csproj -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/AssignRolesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/AssignRolesViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/GenerateRecepitRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/GenerateRecepitRequestModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/GenerateRecepitViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/GenerateRecepitViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/LoginResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/LoginResponse.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/MemberDetailsReportViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/MemberDetailsReportViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/MemberRegistrationGridModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/MemberRegistrationGridModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/MemberRegistrationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/MemberRegistrationViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/MemberRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/MemberRequest.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/MonthWiseReportViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/MonthWiseReportViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/MonthwiseRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/MonthwiseRequestModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/PaymentDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/PaymentDetailsViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/PlanMasterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/PlanMasterViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/RenewalReportRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/RenewalReportRequestModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/RenewalReportViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/RenewalReportViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/RenewalViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/RenewalViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/RoleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/RoleViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/SchemeMasterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/SchemeMasterViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/UsersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/UsersViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/YearWiseRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/YearWiseRequestModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.ViewModels/YearwiseReportViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.ViewModels/YearwiseReportViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym.sln -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/AngularCoreGym.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/AngularCoreGym.csproj -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/.editorconfig -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/README.md -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/angular.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/e2e/protractor.conf.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/e2e/src/app.po.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/package-lock.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/package.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/AdminDashboard/app.AdminDashboardComponent.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/AdminDashboard/app.AdminDashboardComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/AdminDashboard/app.AdminDashboardComponent.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/Models/AssignRemoveModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/Models/AssignRemoveModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/Models/AssignRolesViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/Models/AssignRolesViewModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/Services/app.AssignandRemoveRole.Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/Services/app.AssignandRemoveRole.Service.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/app.AllAssignRole.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/app.AllAssignRole.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/app.AllAssignedRoles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/app.AllAssignedRoles.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/app.AssignRole.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/app.AssignRole.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/app.AssignandRemoveRole.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/AssignRole/app.AssignandRemoveRole.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/AuthGuard/AdminAuthGuardService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/AuthGuard/AdminAuthGuardService.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/AuthGuard/UserAuthGuardService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/AuthGuard/UserAuthGuardService.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/dist/css/sb-admin-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/dist/css/sb-admin-2.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/dist/css/sb-admin-2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/dist/css/sb-admin-2.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/dist/js/sb-admin-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/dist/js/sb-admin-2.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/dist/js/sb-admin-2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/dist/js/sb-admin-2.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap-social/bootstrap-social.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap-social/bootstrap-social.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap-social/bootstrap-social.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap-social/bootstrap-social.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap-social/bootstrap-social.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap-social/bootstrap-social.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-plugins/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-plugins/dataTables.bootstrap.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-plugins/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-plugins/dataTables.bootstrap.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-plugins/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-plugins/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-plugins/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-plugins/index.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-responsive/dataTables.responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-responsive/dataTables.responsive.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-responsive/dataTables.responsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-responsive/dataTables.responsive.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-responsive/dataTables.responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables-responsive/dataTables.responsive.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.bootstrap.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.bootstrap4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.bootstrap4.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.bootstrap4.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.foundation.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.foundation.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.jqueryui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.jqueryui.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.jqueryui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.jqueryui.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.material.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.material.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.material.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.semanticui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.semanticui.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.semanticui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.semanticui.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.uikit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.uikit.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.uikit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/dataTables.uikit.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/jquery.dataTables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/jquery.dataTables.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/jquery.dataTables.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/jquery.dataTables_themeroller.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/css/jquery.dataTables_themeroller.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/Sorting icons.psd -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/favicon.ico -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/sort_both.png -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.bootstrap.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.bootstrap4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.bootstrap4.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.bootstrap4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.bootstrap4.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.foundation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.foundation.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.foundation.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.jqueryui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.jqueryui.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.jqueryui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.jqueryui.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.material.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.material.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.material.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.semanticui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.semanticui.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.semanticui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.semanticui.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.uikit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.uikit.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/dataTables.uikit.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/jquery.dataTables.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/datatables/js/jquery.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot-tooltip/jquery.flot.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot-tooltip/jquery.flot.tooltip.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot-tooltip/jquery.flot.tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot-tooltip/jquery.flot.tooltip.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot-tooltip/jquery.flot.tooltip.source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot-tooltip/jquery.flot.tooltip.source.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/excanvas.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/excanvas.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.colorhelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.colorhelpers.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.canvas.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.categories.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.crosshair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.crosshair.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.errorbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.errorbars.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.fillbetween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.fillbetween.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.image.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.navigate.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.selection.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.stack.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.symbol.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.threshold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.threshold.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.flot.time.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/flot/jquery.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/HELP-US-OUT.txt -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/css/font-awesome.css.map -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/animated.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/core.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/extras.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/extras.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/icons.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/larger.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/list.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/path.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/screen-reader.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/spinning.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/spinning.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/less/variables.less -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_animated.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_extras.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_extras.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_screen-reader.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_spinning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_spinning.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/font-awesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/metisMenu/metisMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/metisMenu/metisMenu.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/metisMenu/metisMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/metisMenu/metisMenu.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/metisMenu/metisMenu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/metisMenu/metisMenu.min.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/metisMenu/metisMenu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/metisMenu/metisMenu.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/morrisjs/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/morrisjs/morris.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/morrisjs/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/morrisjs/morris.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/morrisjs/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/morrisjs/morris.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/raphael/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/raphael/raphael.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/raphael/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Content/vendor/raphael/raphael.min.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/Models/app.UserDropdownModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/Models/app.UserDropdownModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/Models/app.UserModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/Models/app.UserModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/Services/app.UserRegistration.Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/Services/app.UserRegistration.Service.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.AllUserRegistration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.AllUserRegistration.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.AllUserRegistration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.AllUserRegistration.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.EditUserRegistration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.EditUserRegistration.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.EditUserRegistration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.EditUserRegistration.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.UserRegistration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.UserRegistration.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.UserRegistration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/CreateUsers/app.UserRegistration.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/Models/app.LoginModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/Models/app.LoginModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/Services/app.LoginService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/Services/app.LoginService.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/app.AdminLogout.Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/app.AdminLogout.Component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/app.LoginComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/app.LoginComponent.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/app.UserLogout.Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/app.UserLogout.Component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/app.login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Login/app.login.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/List/Memberlist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/List/Memberlist.component.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/List/app.MemberListComponent .ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/List/app.MemberListComponent .ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/List/app.MemberViewComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/List/app.MemberViewComponent.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/List/app.MemberViewComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/List/app.MemberViewComponent.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/Models/app.MemberRegistrationGridModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/Models/app.MemberRegistrationGridModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/Models/app.MemberRegistrationModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/Models/app.MemberRegistrationModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/Services/app.MemberRegistration.Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/Services/app.MemberRegistration.Service.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.AllMemberRegistration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.AllMemberRegistration.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.AllMemberRegistration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.AllMemberRegistration.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.EditMemberRegistration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.EditMemberRegistration.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.EditMemberRegistration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.EditMemberRegistration.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.MemberRegistration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.MemberRegistration.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.MemberRegistration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.MemberRegistration.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.memberComponent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/MemberRegistration/app.memberComponent.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/List/app.PaymentListComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/List/app.PaymentListComponent.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/List/app.PaymentOverviewComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/List/app.PaymentOverviewComponent.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/List/app.PaymentViewComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/List/app.PaymentViewComponent.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/List/app.Paymentlist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/List/app.Paymentlist.component.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/Models/app.PaymentDetailsModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/Models/app.PaymentDetailsModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/Services/app.PaymentDetails.Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Payment/Services/app.PaymentDetails.Service.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PeriodMaster/Models/app.PeriodModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PeriodMaster/Models/app.PeriodModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PeriodMaster/Services/app.Period.Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PeriodMaster/Services/app.Period.Service.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/Models/app.ActivePlanModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/Models/app.ActivePlanModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/Models/app.PlanMasterModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/Models/app.PlanMasterModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/Models/app.PlanMasterViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/Models/app.PlanMasterViewModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/Services/app.planmaster.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/Services/app.planmaster.service.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.EditPlan.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.EditPlan.component.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.EditPlan.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.EditPlan.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.allplanmaster.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.allplanmaster.component.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.allplanmaster.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.allplanmaster.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.planmaster.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.planmaster.component.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.planmaster.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/PlanMaster/app.planmaster.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Recepit/Models/app.GenerateRecepitRequestModel.ts: -------------------------------------------------------------------------------- 1 | export class GenerateRecepitRequestModel 2 | { 3 | public PaymentID: number; 4 | } -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Recepit/Models/app.GenerateRecepitViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Recepit/Models/app.GenerateRecepitViewModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Recepit/Recepit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Recepit/Recepit.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Recepit/Services/app.GenerateRecepit.Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Recepit/Services/app.GenerateRecepit.Service.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Recepit/app.generateRecepit.Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Recepit/app.generateRecepit.Component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/Models/app.RenewalModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/Models/app.RenewalModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/Models/app.RequestMemberModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/Models/app.RequestMemberModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/Models/app.RequestMemberNoModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/Models/app.RequestMemberNoModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/Models/app.ResponseMemberModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/Models/app.ResponseMemberModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/Services/app.renewal.Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/Services/app.renewal.Service.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/app.Renewal.Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/app.Renewal.Component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/app.renewalcomponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Renewal/app.renewalcomponent.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.MemberDetailsReportViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.MemberDetailsReportViewModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.MonthModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.MonthModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.MonthWiseRequestModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.MonthWiseRequestModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.MonthWiseResponseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.MonthWiseResponseModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.RenewalReportViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.RenewalReportViewModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.RenewalRequestModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.RenewalRequestModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.YearModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.YearModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.YearwiseRequestModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.YearwiseRequestModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.YearwiseResponseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Models/app.YearwiseResponseModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Services/app.ReportServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/Services/app.ReportServices.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.MemberDetailsReport.Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.MemberDetailsReport.Component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.MemberDetailsReport.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.MemberDetailsReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.MemberDetailsReport.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.MonthwiseReport.Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.MonthwiseReport.Component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.MonthwiseReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.MonthwiseReport.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.RenewalReport.Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.RenewalReport.Component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.RenewalReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.RenewalReport.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.YearwiseReport.Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.YearwiseReport.Component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.YearwiseReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Reports/app.YearwiseReport.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/Models/app.RoleModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/Models/app.RoleModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/Services/app.role.Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/Services/app.role.Service.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.AllRole.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.AllRole.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.AllRole.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.AllRole.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.EditRole.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.EditRole.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.EditRole.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.EditRole.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.Role.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.Role.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.Role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/RoleMaster/app.Role.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/Models/app.SchemeDropdownModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/Models/app.SchemeDropdownModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/Models/app.SchemeViewModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/Models/app.SchemeViewModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/Services/app.Scheme.Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/Services/app.Scheme.Service.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.AllScheme.Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.AllScheme.Component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.AllSchemeComponent.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.AllSchemeComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.AllSchemeComponent.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.EditScheme.Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.EditScheme.Component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.EditSchemeComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.EditSchemeComponent.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.Scheme.Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.Scheme.Component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.SchemeMaster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.SchemeMaster.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.SchemeModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/SchemeMasters/app.SchemeModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Shared/PaginationModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Shared/PaginationModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Shared/PaginationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Shared/PaginationService.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Shared/app.GenderModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Shared/app.GenderModel.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Shared/constantUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Shared/constantUrl.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/Shared/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/Shared/environment.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/UserDashboard/app.UserDashboardComponent.html: -------------------------------------------------------------------------------- 1 |

UserDashboard

2 |
-------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/UserDashboard/app.UserDashboardComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/UserDashboard/app.UserDashboardComponent.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/_layout/app-admin-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/_layout/app-admin-layout.component.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/_layout/app-adminlayout.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/_layout/app-adminlayout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/_layout/app-adminlayout.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/_layout/app-user-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/_layout/app-user-layout.component.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/_layout/app-userlayout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/_layout/app-userlayout.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/browserslist -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/favicon.ico -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/index.html -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/karma.conf.js -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/main.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/styles.css -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/test.ts -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/src/tslint.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/ClientApp/tslint.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Common/CustomExceptionFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Common/CustomExceptionFilterAttribute.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Common/EncryptionLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Common/EncryptionLibrary.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/AllActivePlanMasterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/AllActivePlanMasterController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/AssignRolesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/AssignRolesController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/AuthenticateController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/AuthenticateController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/CreateRoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/CreateRoleController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/GenerateRecepitController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/GenerateRecepitController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/GetMemberNoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/GetMemberNoController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/GetTotalAmountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/GetTotalAmountController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/MemberDetailsReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/MemberDetailsReportController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/MonthwiseReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/MonthwiseReportController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/PaymentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/PaymentController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/PeriodController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/PeriodController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/PlanMasterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/PlanMasterController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/RegisterMemberController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/RegisterMemberController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/RemoveRoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/RemoveRoleController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/RenewalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/RenewalController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/RenewalDetailsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/RenewalDetailsController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/RenewalReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/RenewalReportController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/SampleDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/SampleDataController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/SchemeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/SchemeController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/SchemeDropdownController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/SchemeDropdownController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/UserController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Controllers/YearwiseReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Controllers/YearwiseReportController.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Models/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Models/AppSettings.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Pages/Error.cshtml -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Program.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Properties/launchSettings.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/Startup.cs -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/appsettings.Development.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/appsettings.json -------------------------------------------------------------------------------- /AngularCoreGym/AngularCoreGym/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/AngularCoreGym/AngularCoreGym/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/Images/1.png -------------------------------------------------------------------------------- /Images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/Images/2.jpg -------------------------------------------------------------------------------- /Images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/Images/3.jpg -------------------------------------------------------------------------------- /Images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/Images/4.jpg -------------------------------------------------------------------------------- /Images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/Images/5.jpg -------------------------------------------------------------------------------- /Images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/Images/6.png -------------------------------------------------------------------------------- /Images/hqdefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/Images/hqdefault.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshwar/ASPNET-Core-Angular-7-Project/HEAD/README.md --------------------------------------------------------------------------------