├── Appointment.sln ├── Appointment ├── .gitignore ├── Appointment.csproj ├── ClientApp │ ├── .angular-cli.json │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── e2e │ │ ├── app.e2e-spec.ts │ │ ├── app.po.ts │ │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── counter │ │ │ │ ├── counter.component.html │ │ │ │ ├── counter.component.spec.ts │ │ │ │ └── counter.component.ts │ │ │ ├── fetch-data │ │ │ │ ├── fetch-data.component.html │ │ │ │ └── fetch-data.component.ts │ │ │ ├── home.service.spec.ts │ │ │ ├── home.service.ts │ │ │ ├── home │ │ │ │ ├── customerModel.js │ │ │ │ ├── customerModel.js.map │ │ │ │ ├── customerModel.ts │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ └── nav-menu │ │ │ │ ├── nav-menu.component.css │ │ │ │ ├── nav-menu.component.html │ │ │ │ └── nav-menu.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json ├── Controllers │ └── SampleDataController.cs ├── Entities │ ├── Appointment.cs │ └── AppointmentContext.cs ├── Migrations │ ├── 20190605063919_Appointment.Entities.AppointmentContext.Designer.cs │ ├── 20190605063919_Appointment.Entities.AppointmentContext.cs │ └── AppointmentContextModelSnapshot.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ └── _ViewImports.cshtml ├── Program.cs ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ └── favicon.ico ├── LICENSE └── README.md /Appointment.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment.sln -------------------------------------------------------------------------------- /Appointment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/.gitignore -------------------------------------------------------------------------------- /Appointment/Appointment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Appointment.csproj -------------------------------------------------------------------------------- /Appointment/ClientApp/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/.angular-cli.json -------------------------------------------------------------------------------- /Appointment/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/.editorconfig -------------------------------------------------------------------------------- /Appointment/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/.gitignore -------------------------------------------------------------------------------- /Appointment/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/README.md -------------------------------------------------------------------------------- /Appointment/ClientApp/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/e2e/app.po.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Appointment/ClientApp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/karma.conf.js -------------------------------------------------------------------------------- /Appointment/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Appointment/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/package.json -------------------------------------------------------------------------------- /Appointment/ClientApp/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/protractor.conf.js -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/app.component.css -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/counter/counter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/counter/counter.component.html -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/counter/counter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/counter/counter.component.spec.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/counter/counter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/counter/counter.component.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/fetch-data/fetch-data.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/fetch-data/fetch-data.component.html -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/fetch-data/fetch-data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/fetch-data/fetch-data.component.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/home.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/home.service.spec.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/home.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/home.service.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/home/customerModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/home/customerModel.js -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/home/customerModel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/home/customerModel.js.map -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/home/customerModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/home/customerModel.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/home/home.component.html -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/home/home.component.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/nav-menu/nav-menu.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/nav-menu/nav-menu.component.css -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/nav-menu/nav-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/nav-menu/nav-menu.component.html -------------------------------------------------------------------------------- /Appointment/ClientApp/src/app/nav-menu/nav-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/app/nav-menu/nav-menu.component.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Appointment/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Appointment/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/index.html -------------------------------------------------------------------------------- /Appointment/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/main.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/styles.css -------------------------------------------------------------------------------- /Appointment/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/test.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/tsconfig.app.json -------------------------------------------------------------------------------- /Appointment/ClientApp/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Appointment/ClientApp/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/src/typings.d.ts -------------------------------------------------------------------------------- /Appointment/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /Appointment/ClientApp/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/ClientApp/tslint.json -------------------------------------------------------------------------------- /Appointment/Controllers/SampleDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Controllers/SampleDataController.cs -------------------------------------------------------------------------------- /Appointment/Entities/Appointment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Entities/Appointment.cs -------------------------------------------------------------------------------- /Appointment/Entities/AppointmentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Entities/AppointmentContext.cs -------------------------------------------------------------------------------- /Appointment/Migrations/20190605063919_Appointment.Entities.AppointmentContext.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Migrations/20190605063919_Appointment.Entities.AppointmentContext.Designer.cs -------------------------------------------------------------------------------- /Appointment/Migrations/20190605063919_Appointment.Entities.AppointmentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Migrations/20190605063919_Appointment.Entities.AppointmentContext.cs -------------------------------------------------------------------------------- /Appointment/Migrations/AppointmentContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Migrations/AppointmentContextModelSnapshot.cs -------------------------------------------------------------------------------- /Appointment/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Pages/Error.cshtml -------------------------------------------------------------------------------- /Appointment/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Appointment/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Appointment/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Program.cs -------------------------------------------------------------------------------- /Appointment/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/Startup.cs -------------------------------------------------------------------------------- /Appointment/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/appsettings.Development.json -------------------------------------------------------------------------------- /Appointment/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/appsettings.json -------------------------------------------------------------------------------- /Appointment/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/Appointment/wwwroot/favicon.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smedavarapu1/Appointment-Scheduling/HEAD/README.md --------------------------------------------------------------------------------