├── .gitattributes ├── .github └── workflows │ ├── publish-docs.yml │ └── publish.yml ├── .gitignore ├── BookingService.sln ├── BookingService.sln.DotSettings ├── Directory.Build.props ├── LICENSE ├── common.props ├── docs └── README.md └── modules ├── BookingService.Orleans ├── .prettierrc ├── EasyAbp.BookingService.Orleans.abpmdl.json ├── EasyAbp.BookingService.Orleans.abpsln.json ├── EasyAbp.BookingService.Orleans.sln ├── EasyAbp.BookingService.Orleans.sln.DotSettings ├── NuGet.Config ├── angular │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc │ ├── .vscode │ │ └── extensions.json │ ├── README.md │ ├── angular.json │ ├── package.json │ ├── projects │ │ ├── booking-service │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── ng-package.json │ │ │ │ └── src │ │ │ │ │ ├── booking-service-config.module.ts │ │ │ │ │ ├── enums │ │ │ │ │ ├── index.ts │ │ │ │ │ └── route-names.ts │ │ │ │ │ ├── providers │ │ │ │ │ ├── index.ts │ │ │ │ │ └── route.provider.ts │ │ │ │ │ └── public-api.ts │ │ │ ├── karma.conf.js │ │ │ ├── ng-package.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── lib │ │ │ │ │ ├── booking-service-routing.module.ts │ │ │ │ │ ├── booking-service.component.spec.ts │ │ │ │ │ ├── booking-service.module.ts │ │ │ │ │ ├── booking-service.service.spec.ts │ │ │ │ │ ├── components │ │ │ │ │ │ └── booking-service.component.ts │ │ │ │ │ └── services │ │ │ │ │ │ └── booking-service.service.ts │ │ │ │ ├── public-api.ts │ │ │ │ └── test.ts │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ └── dev-app │ │ │ ├── .browserslistrc │ │ │ ├── .eslintrc.json │ │ │ ├── karma.conf.js │ │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── home │ │ │ │ │ ├── home-routing.module.ts │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.ts │ │ │ │ │ └── home.module.ts │ │ │ │ ├── route.provider.ts │ │ │ │ └── shared │ │ │ │ │ └── shared.module.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.scss │ │ │ └── test.ts │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.prod.json │ │ │ └── tsconfig.spec.json │ ├── tsconfig.json │ ├── tsconfig.prod.json │ └── yarn.lock ├── database │ ├── Dockerfile │ └── entrypoint.sh ├── docker-compose.migrations.yml ├── docker-compose.override.yml ├── docker-compose.yml ├── host │ ├── EasyAbp.BookingService.Orleans.Blazor.Host │ │ ├── BookingServiceOrleansBlazorHostAutoMapperProfile.cs │ │ ├── BookingServiceOrleansBlazorHostBundleContributor.cs │ │ ├── BookingServiceOrleansBlazorHostModule.cs │ │ ├── BookingServiceOrleansHostBrandingProvider.cs │ │ ├── BookingServiceOrleansHostMenuContributor.cs │ │ ├── EasyAbp.BookingService.Orleans.Blazor.Host.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Blazor.Host.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Pages │ │ │ └── Index.razor │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── _Imports.razor │ │ └── wwwroot │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── favicon.ico │ │ │ ├── global.css │ │ │ ├── global.js │ │ │ ├── index.html │ │ │ └── main.css │ ├── EasyAbp.BookingService.Orleans.Blazor.Server.Host │ │ ├── BookingServiceOrleansBlazorHostModule.cs │ │ ├── BookingServiceOrleansBrandingProvider.cs │ │ ├── BookingServiceOrleansComponentBase.cs │ │ ├── EasyAbp.BookingService.Orleans.Blazor.Server.Host.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Blazor.Server.Host.csproj │ │ ├── EntityFrameworkCore │ │ │ ├── UnifiedDbContext.cs │ │ │ └── UnifiedDbContextFactory.cs │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Menus │ │ │ ├── BookingServiceOrleansMenuContributor.cs │ │ │ └── BookingServiceOrleansMenus.cs │ │ ├── Migrations │ │ │ ├── 20211124020351_Initial.Designer.cs │ │ │ ├── 20211124020351_Initial.cs │ │ │ ├── 20230323082643_UpgradedToAbp_7_1.Designer.cs │ │ │ ├── 20230323082643_UpgradedToAbp_7_1.cs │ │ │ ├── 20230503130905_UpgradedToAbp_7_2.Designer.cs │ │ │ ├── 20230503130905_UpgradedToAbp_7_2.cs │ │ │ ├── 20231227130548_UpgradedToAbp_8_0.Designer.cs │ │ │ ├── 20231227130548_UpgradedToAbp_8_0.cs │ │ │ ├── 20240414204638_UpgradedToAbp_8_1.Designer.cs │ │ │ ├── 20240414204638_UpgradedToAbp_8_1.cs │ │ │ ├── 20240730112808_UpgradedToAbp_8_2.Designer.cs │ │ │ ├── 20240730112808_UpgradedToAbp_8_2.cs │ │ │ ├── 20241229122903_UpgradedToAbp_9_0.Designer.cs │ │ │ ├── 20241229122903_UpgradedToAbp_9_0.cs │ │ │ ├── 20250330145032_Upgraded_To_Abp_9_1.Designer.cs │ │ │ ├── 20250330145032_Upgraded_To_Abp_9_1.cs │ │ │ ├── 20250909184244_Upgraded_To_Abp_9_3.Designer.cs │ │ │ ├── 20250909184244_Upgraded_To_Abp_9_3.cs │ │ │ └── UnifiedDbContextModelSnapshot.cs │ │ ├── Pages │ │ │ ├── Index.razor │ │ │ ├── Index.razor.cs │ │ │ ├── Index.razor.css │ │ │ ├── _Host.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── _Imports.razor │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── appsettings.secrets.json │ │ ├── package.json │ │ ├── tempkey.jwk │ │ ├── wwwroot │ │ │ ├── blazor-global-styles.css │ │ │ ├── favicon.ico │ │ │ ├── global-styles.css │ │ │ └── libs │ │ │ │ ├── @fortawesome │ │ │ │ └── fontawesome-free │ │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ └── v4-shims.css │ │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ │ ├── abp │ │ │ │ ├── core │ │ │ │ │ ├── abp.css │ │ │ │ │ └── abp.js │ │ │ │ ├── jquery │ │ │ │ │ └── abp.jquery.js │ │ │ │ ├── luxon │ │ │ │ │ └── abp.luxon.js │ │ │ │ └── utils │ │ │ │ │ ├── abp-utils.umd.js │ │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ │ ├── bootstrap-datepicker │ │ │ │ ├── bootstrap-datepicker.css.map │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ ├── bootstrap-datepicker.min.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-DZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-US.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ │ ├── bootstrap-datepicker.mr.min.js │ │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ │ ├── bootstrap-daterangepicker │ │ │ │ ├── daterangepicker.css │ │ │ │ └── daterangepicker.js │ │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ │ │ ├── datatables.net-bs5 │ │ │ │ ├── css │ │ │ │ │ └── dataTables.bootstrap5.css │ │ │ │ └── js │ │ │ │ │ └── dataTables.bootstrap5.js │ │ │ │ ├── datatables.net │ │ │ │ └── js │ │ │ │ │ └── dataTables.min.js │ │ │ │ ├── jquery-form │ │ │ │ └── jquery.form.min.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── jquery.validate.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_ar.min.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_az.min.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bg.min.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_ca.min.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_cs.min.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_da.min.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_de.min.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_el.min.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es.min.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_et.min.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_eu.min.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fa.min.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fi.min.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_fr.min.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_ge.min.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_gl.min.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_he.min.js │ │ │ │ │ ├── messages_hi.js │ │ │ │ │ ├── messages_hi.min.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hr.min.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hu.min.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_id.min.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_is.min.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_it.min.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ja.min.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_ka.min.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_kk.min.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_ko.min.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lt.min.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_lv.min.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_mk.min.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_my.min.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_nl.min.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_no.min.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pl.min.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ro.min.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_ru.min.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_sd.min.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_si.min.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sk.min.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sl.min.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr.min.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_sv.min.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_th.min.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tj.min.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_tr.min.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_uk.min.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_ur.min.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_vi.min.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh.min.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_de.min.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_fi.min.js │ │ │ │ │ ├── methods_it.js │ │ │ │ │ ├── methods_it.min.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ ├── methods_nl.min.js │ │ │ │ │ ├── methods_pt.js │ │ │ │ │ └── methods_pt.min.js │ │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ │ ├── lodash │ │ │ │ └── lodash.min.js │ │ │ │ ├── luxon │ │ │ │ ├── luxon.js │ │ │ │ ├── luxon.js.map │ │ │ │ ├── luxon.min.js │ │ │ │ └── luxon.min.js.map │ │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ │ ├── mCSB_buttons.png │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ │ ├── moment │ │ │ │ ├── locale │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-ps.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── bn-bd.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bo.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cv.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dv.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-ie.js │ │ │ │ │ ├── en-il.js │ │ │ │ │ ├── en-in.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── en-sg.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-do.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fil.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fy.js │ │ │ │ │ ├── ga.js │ │ │ │ │ ├── gd.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gom-deva.js │ │ │ │ │ ├── gom-latn.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy-am.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it-ch.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── jv.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── kn.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku-kmr.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── ky.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lo.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── mi.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ml.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── mr.js │ │ │ │ │ ├── ms-my.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── mt.js │ │ │ │ │ ├── my.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl-be.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── oc-lnc.js │ │ │ │ │ ├── pa-in.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sd.js │ │ │ │ │ ├── se.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── ss.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── tet.js │ │ │ │ │ ├── tg.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ ├── tlh.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tzl.js │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ ├── tzm.js │ │ │ │ │ ├── ug-cn.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── ur.js │ │ │ │ │ ├── uz-latn.js │ │ │ │ │ ├── uz.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── x-pseudo.js │ │ │ │ │ ├── yo.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh-hk.js │ │ │ │ │ ├── zh-mo.js │ │ │ │ │ └── zh-tw.js │ │ │ │ └── moment.min.js │ │ │ │ ├── select2 │ │ │ │ ├── css │ │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ └── select2.min.js │ │ │ │ ├── sweetalert2 │ │ │ │ ├── sweetalert2.all.js │ │ │ │ ├── sweetalert2.all.min.js │ │ │ │ ├── sweetalert2.css │ │ │ │ ├── sweetalert2.esm.all.js │ │ │ │ ├── sweetalert2.esm.all.min.js │ │ │ │ ├── sweetalert2.esm.js │ │ │ │ ├── sweetalert2.esm.min.js │ │ │ │ ├── sweetalert2.js │ │ │ │ ├── sweetalert2.min.css │ │ │ │ └── sweetalert2.min.js │ │ │ │ └── timeago │ │ │ │ ├── jquery.timeago.js │ │ │ │ └── locales │ │ │ │ ├── README.md │ │ │ │ ├── jquery.timeago.af.js │ │ │ │ ├── jquery.timeago.am.js │ │ │ │ ├── jquery.timeago.ar.js │ │ │ │ ├── jquery.timeago.az-short.js │ │ │ │ ├── jquery.timeago.az.js │ │ │ │ ├── jquery.timeago.be.js │ │ │ │ ├── jquery.timeago.bg.js │ │ │ │ ├── jquery.timeago.bs.js │ │ │ │ ├── jquery.timeago.ca.js │ │ │ │ ├── jquery.timeago.cs.js │ │ │ │ ├── jquery.timeago.cy.js │ │ │ │ ├── jquery.timeago.da.js │ │ │ │ ├── jquery.timeago.de-short.js │ │ │ │ ├── jquery.timeago.de.js │ │ │ │ ├── jquery.timeago.dv.js │ │ │ │ ├── jquery.timeago.el.js │ │ │ │ ├── jquery.timeago.en-short.js │ │ │ │ ├── jquery.timeago.en.js │ │ │ │ ├── jquery.timeago.es-short.js │ │ │ │ ├── jquery.timeago.es.js │ │ │ │ ├── jquery.timeago.et.js │ │ │ │ ├── jquery.timeago.eu.js │ │ │ │ ├── jquery.timeago.fa-short.js │ │ │ │ ├── jquery.timeago.fa.js │ │ │ │ ├── jquery.timeago.fi.js │ │ │ │ ├── jquery.timeago.fr-short.js │ │ │ │ ├── jquery.timeago.fr.js │ │ │ │ ├── jquery.timeago.gl.js │ │ │ │ ├── jquery.timeago.he.js │ │ │ │ ├── jquery.timeago.hr.js │ │ │ │ ├── jquery.timeago.hu.js │ │ │ │ ├── jquery.timeago.hy.js │ │ │ │ ├── jquery.timeago.id.js │ │ │ │ ├── jquery.timeago.is.js │ │ │ │ ├── jquery.timeago.it-short.js │ │ │ │ ├── jquery.timeago.it.js │ │ │ │ ├── jquery.timeago.ja.js │ │ │ │ ├── jquery.timeago.jv.js │ │ │ │ ├── jquery.timeago.ko.js │ │ │ │ ├── jquery.timeago.ky.js │ │ │ │ ├── jquery.timeago.lt.js │ │ │ │ ├── jquery.timeago.lv.js │ │ │ │ ├── jquery.timeago.mk.js │ │ │ │ ├── jquery.timeago.nl.js │ │ │ │ ├── jquery.timeago.no.js │ │ │ │ ├── jquery.timeago.pl.js │ │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ │ ├── jquery.timeago.pt-br.js │ │ │ │ ├── jquery.timeago.pt-short.js │ │ │ │ ├── jquery.timeago.pt.js │ │ │ │ ├── jquery.timeago.ro.js │ │ │ │ ├── jquery.timeago.rs.js │ │ │ │ ├── jquery.timeago.ru.js │ │ │ │ ├── jquery.timeago.rw.js │ │ │ │ ├── jquery.timeago.si.js │ │ │ │ ├── jquery.timeago.sk.js │ │ │ │ ├── jquery.timeago.sl.js │ │ │ │ ├── jquery.timeago.sq.js │ │ │ │ ├── jquery.timeago.sr.js │ │ │ │ ├── jquery.timeago.sv.js │ │ │ │ ├── jquery.timeago.th.js │ │ │ │ ├── jquery.timeago.tr-short.js │ │ │ │ ├── jquery.timeago.tr.js │ │ │ │ ├── jquery.timeago.uk.js │ │ │ │ ├── jquery.timeago.ur.js │ │ │ │ ├── jquery.timeago.uz.js │ │ │ │ ├── jquery.timeago.vi.js │ │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ │ └── jquery.timeago.zh-TW.js │ │ └── yarn.lock │ ├── EasyAbp.BookingService.Orleans.Host.Shared │ │ ├── EasyAbp.BookingService.Orleans.Host.Shared.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Host.Shared.csproj │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.HttpApi.Host │ │ ├── BookingServiceOrleansHttpApiHostModule.cs │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ ├── Dockerfile │ │ ├── EasyAbp.BookingService.Orleans.HttpApi.Host.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.HttpApi.Host.csproj │ │ ├── EntityFrameworkCore │ │ │ ├── BookingServiceOrleansHttpApiHostMigrationsDbContext.cs │ │ │ └── BookingServiceOrleansHttpApiHostMigrationsDbContextFactory.cs │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.json │ │ ├── appsettings.secrets.json │ │ └── yarn.lock │ ├── EasyAbp.BookingService.Orleans.IdentityServer │ │ ├── BookingServiceOrleansIdentityServerModule.cs │ │ ├── Dockerfile │ │ ├── EasyAbp.BookingService.Orleans.IdentityServer.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.IdentityServer.csproj │ │ ├── EntityFrameworkCore │ │ │ ├── IdentityServerHostMigrationsDbContext.cs │ │ │ └── IdentityServerHostMigrationsDbContextFactory.cs │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── IdentityServer │ │ │ └── IdentityServerDataSeedContributor.cs │ │ ├── Migrations │ │ │ ├── 20211124020400_Initial.Designer.cs │ │ │ ├── 20211124020400_Initial.cs │ │ │ ├── 20230113183748_UpgradedToAbp7.Designer.cs │ │ │ ├── 20230113183748_UpgradedToAbp7.cs │ │ │ ├── 20230323082632_UpgradedToAbp_7_1.Designer.cs │ │ │ ├── 20230323082632_UpgradedToAbp_7_1.cs │ │ │ ├── 20230503130848_UpgradedToAbp_7_2.Designer.cs │ │ │ ├── 20230503130848_UpgradedToAbp_7_2.cs │ │ │ ├── 20231227130258_UpgradedToAbp_8_0.Designer.cs │ │ │ ├── 20231227130258_UpgradedToAbp_8_0.cs │ │ │ ├── 20240414204746_UpgradedToAbp_8_1.Designer.cs │ │ │ ├── 20240414204746_UpgradedToAbp_8_1.cs │ │ │ ├── 20240730112732_UpgradedToAbp_8_2.Designer.cs │ │ │ ├── 20240730112732_UpgradedToAbp_8_2.cs │ │ │ ├── 20241229122841_UpgradedToAbp_9_0.Designer.cs │ │ │ ├── 20241229122841_UpgradedToAbp_9_0.cs │ │ │ ├── 20250330145053_Upgraded_To_Abp_9_1.Designer.cs │ │ │ ├── 20250330145053_Upgraded_To_Abp_9_1.cs │ │ │ ├── 20250909184302_Upgraded_To_Abp_9_3.Designer.cs │ │ │ ├── 20250909184302_Upgraded_To_Abp_9_3.cs │ │ │ └── IdentityServerHostMigrationsDbContextModelSnapshot.cs │ │ ├── Pages │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── abp.resourcemapping.js │ │ ├── appsettings.json │ │ ├── appsettings.secrets.json │ │ ├── package.json │ │ ├── tempkey.jwk │ │ ├── tempkey.rsa │ │ ├── wwwroot │ │ │ └── libs │ │ │ │ ├── @fortawesome │ │ │ │ └── fontawesome-free │ │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ └── v4-shims.css │ │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ │ ├── abp │ │ │ │ ├── core │ │ │ │ │ ├── abp.css │ │ │ │ │ └── abp.js │ │ │ │ ├── jquery │ │ │ │ │ └── abp.jquery.js │ │ │ │ ├── luxon │ │ │ │ │ └── abp.luxon.js │ │ │ │ └── utils │ │ │ │ │ ├── abp-utils.umd.js │ │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ │ ├── bootstrap-datepicker │ │ │ │ ├── bootstrap-datepicker.css.map │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ ├── bootstrap-datepicker.min.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-DZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-US.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ │ ├── bootstrap-datepicker.mr.min.js │ │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ │ ├── bootstrap-daterangepicker │ │ │ │ ├── daterangepicker.css │ │ │ │ └── daterangepicker.js │ │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ │ │ ├── datatables.net-bs5 │ │ │ │ ├── css │ │ │ │ │ └── dataTables.bootstrap5.css │ │ │ │ └── js │ │ │ │ │ └── dataTables.bootstrap5.js │ │ │ │ ├── datatables.net │ │ │ │ └── js │ │ │ │ │ └── dataTables.min.js │ │ │ │ ├── jquery-form │ │ │ │ └── jquery.form.min.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── jquery.validate.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_ar.min.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_az.min.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bg.min.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_ca.min.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_cs.min.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_da.min.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_de.min.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_el.min.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es.min.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_et.min.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_eu.min.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fa.min.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fi.min.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_fr.min.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_ge.min.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_gl.min.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_he.min.js │ │ │ │ │ ├── messages_hi.js │ │ │ │ │ ├── messages_hi.min.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hr.min.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hu.min.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_id.min.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_is.min.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_it.min.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ja.min.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_ka.min.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_kk.min.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_ko.min.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lt.min.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_lv.min.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_mk.min.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_my.min.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_nl.min.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_no.min.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pl.min.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ro.min.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_ru.min.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_sd.min.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_si.min.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sk.min.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sl.min.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr.min.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_sv.min.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_th.min.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tj.min.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_tr.min.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_uk.min.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_ur.min.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_vi.min.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh.min.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_de.min.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_fi.min.js │ │ │ │ │ ├── methods_it.js │ │ │ │ │ ├── methods_it.min.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ ├── methods_nl.min.js │ │ │ │ │ ├── methods_pt.js │ │ │ │ │ └── methods_pt.min.js │ │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ │ ├── lodash │ │ │ │ └── lodash.min.js │ │ │ │ ├── luxon │ │ │ │ ├── luxon.js │ │ │ │ ├── luxon.js.map │ │ │ │ ├── luxon.min.js │ │ │ │ └── luxon.min.js.map │ │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ │ ├── mCSB_buttons.png │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ │ ├── moment │ │ │ │ ├── locale │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-ps.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── bn-bd.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bo.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cv.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dv.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-ie.js │ │ │ │ │ ├── en-il.js │ │ │ │ │ ├── en-in.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── en-sg.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-do.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fil.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fy.js │ │ │ │ │ ├── ga.js │ │ │ │ │ ├── gd.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gom-deva.js │ │ │ │ │ ├── gom-latn.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy-am.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it-ch.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── jv.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── kn.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku-kmr.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── ky.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lo.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── mi.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ml.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── mr.js │ │ │ │ │ ├── ms-my.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── mt.js │ │ │ │ │ ├── my.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl-be.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── oc-lnc.js │ │ │ │ │ ├── pa-in.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sd.js │ │ │ │ │ ├── se.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── ss.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── tet.js │ │ │ │ │ ├── tg.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ ├── tlh.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tzl.js │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ ├── tzm.js │ │ │ │ │ ├── ug-cn.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── ur.js │ │ │ │ │ ├── uz-latn.js │ │ │ │ │ ├── uz.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── x-pseudo.js │ │ │ │ │ ├── yo.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh-hk.js │ │ │ │ │ ├── zh-mo.js │ │ │ │ │ └── zh-tw.js │ │ │ │ └── moment.min.js │ │ │ │ ├── select2 │ │ │ │ ├── css │ │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ └── select2.min.js │ │ │ │ ├── sweetalert2 │ │ │ │ ├── sweetalert2.all.js │ │ │ │ ├── sweetalert2.all.min.js │ │ │ │ ├── sweetalert2.css │ │ │ │ ├── sweetalert2.esm.all.js │ │ │ │ ├── sweetalert2.esm.all.min.js │ │ │ │ ├── sweetalert2.esm.js │ │ │ │ ├── sweetalert2.esm.min.js │ │ │ │ ├── sweetalert2.js │ │ │ │ ├── sweetalert2.min.css │ │ │ │ └── sweetalert2.min.js │ │ │ │ └── timeago │ │ │ │ ├── jquery.timeago.js │ │ │ │ └── locales │ │ │ │ ├── README.md │ │ │ │ ├── jquery.timeago.af.js │ │ │ │ ├── jquery.timeago.am.js │ │ │ │ ├── jquery.timeago.ar.js │ │ │ │ ├── jquery.timeago.az-short.js │ │ │ │ ├── jquery.timeago.az.js │ │ │ │ ├── jquery.timeago.be.js │ │ │ │ ├── jquery.timeago.bg.js │ │ │ │ ├── jquery.timeago.bs.js │ │ │ │ ├── jquery.timeago.ca.js │ │ │ │ ├── jquery.timeago.cs.js │ │ │ │ ├── jquery.timeago.cy.js │ │ │ │ ├── jquery.timeago.da.js │ │ │ │ ├── jquery.timeago.de-short.js │ │ │ │ ├── jquery.timeago.de.js │ │ │ │ ├── jquery.timeago.dv.js │ │ │ │ ├── jquery.timeago.el.js │ │ │ │ ├── jquery.timeago.en-short.js │ │ │ │ ├── jquery.timeago.en.js │ │ │ │ ├── jquery.timeago.es-short.js │ │ │ │ ├── jquery.timeago.es.js │ │ │ │ ├── jquery.timeago.et.js │ │ │ │ ├── jquery.timeago.eu.js │ │ │ │ ├── jquery.timeago.fa-short.js │ │ │ │ ├── jquery.timeago.fa.js │ │ │ │ ├── jquery.timeago.fi.js │ │ │ │ ├── jquery.timeago.fr-short.js │ │ │ │ ├── jquery.timeago.fr.js │ │ │ │ ├── jquery.timeago.gl.js │ │ │ │ ├── jquery.timeago.he.js │ │ │ │ ├── jquery.timeago.hr.js │ │ │ │ ├── jquery.timeago.hu.js │ │ │ │ ├── jquery.timeago.hy.js │ │ │ │ ├── jquery.timeago.id.js │ │ │ │ ├── jquery.timeago.is.js │ │ │ │ ├── jquery.timeago.it-short.js │ │ │ │ ├── jquery.timeago.it.js │ │ │ │ ├── jquery.timeago.ja.js │ │ │ │ ├── jquery.timeago.jv.js │ │ │ │ ├── jquery.timeago.ko.js │ │ │ │ ├── jquery.timeago.ky.js │ │ │ │ ├── jquery.timeago.lt.js │ │ │ │ ├── jquery.timeago.lv.js │ │ │ │ ├── jquery.timeago.mk.js │ │ │ │ ├── jquery.timeago.nl.js │ │ │ │ ├── jquery.timeago.no.js │ │ │ │ ├── jquery.timeago.pl.js │ │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ │ ├── jquery.timeago.pt-br.js │ │ │ │ ├── jquery.timeago.pt-short.js │ │ │ │ ├── jquery.timeago.pt.js │ │ │ │ ├── jquery.timeago.ro.js │ │ │ │ ├── jquery.timeago.rs.js │ │ │ │ ├── jquery.timeago.ru.js │ │ │ │ ├── jquery.timeago.rw.js │ │ │ │ ├── jquery.timeago.si.js │ │ │ │ ├── jquery.timeago.sk.js │ │ │ │ ├── jquery.timeago.sl.js │ │ │ │ ├── jquery.timeago.sq.js │ │ │ │ ├── jquery.timeago.sr.js │ │ │ │ ├── jquery.timeago.sv.js │ │ │ │ ├── jquery.timeago.th.js │ │ │ │ ├── jquery.timeago.tr-short.js │ │ │ │ ├── jquery.timeago.tr.js │ │ │ │ ├── jquery.timeago.uk.js │ │ │ │ ├── jquery.timeago.ur.js │ │ │ │ ├── jquery.timeago.uz.js │ │ │ │ ├── jquery.timeago.vi.js │ │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ │ └── jquery.timeago.zh-TW.js │ │ └── yarn.lock │ ├── EasyAbp.BookingService.Orleans.Web.Host │ │ ├── BookingServiceOrleansBrandingProvider.cs │ │ ├── BookingServiceOrleansWebAutoMapperProfile.cs │ │ ├── BookingServiceOrleansWebHostMenuContributor.cs │ │ ├── BookingServiceOrleansWebHostModule.cs │ │ ├── Controllers │ │ │ └── AccountController.cs │ │ ├── EasyAbp.BookingService.Orleans.Web.Host.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Web.Host.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Pages │ │ │ ├── BookingServicePageModel.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Views │ │ │ └── _ViewImports.cshtml │ │ ├── abp.resourcemapping.js │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── appsettings.secrets.json │ │ ├── package.json │ │ ├── wwwroot │ │ │ └── libs │ │ │ │ ├── @fortawesome │ │ │ │ └── fontawesome-free │ │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ └── v4-shims.css │ │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ │ ├── abp │ │ │ │ ├── core │ │ │ │ │ ├── abp.css │ │ │ │ │ └── abp.js │ │ │ │ ├── jquery │ │ │ │ │ └── abp.jquery.js │ │ │ │ ├── luxon │ │ │ │ │ └── abp.luxon.js │ │ │ │ └── utils │ │ │ │ │ ├── abp-utils.umd.js │ │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ │ ├── bootstrap-datepicker │ │ │ │ ├── bootstrap-datepicker.css.map │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ ├── bootstrap-datepicker.min.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-DZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-US.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ │ ├── bootstrap-datepicker.mr.min.js │ │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ │ ├── bootstrap-daterangepicker │ │ │ │ ├── daterangepicker.css │ │ │ │ └── daterangepicker.js │ │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ │ │ ├── datatables.net-bs5 │ │ │ │ ├── css │ │ │ │ │ └── dataTables.bootstrap5.css │ │ │ │ └── js │ │ │ │ │ └── dataTables.bootstrap5.js │ │ │ │ ├── datatables.net │ │ │ │ └── js │ │ │ │ │ └── dataTables.min.js │ │ │ │ ├── jquery-form │ │ │ │ └── jquery.form.min.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── jquery.validate.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_ar.min.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_az.min.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bg.min.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_ca.min.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_cs.min.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_da.min.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_de.min.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_el.min.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es.min.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_et.min.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_eu.min.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fa.min.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fi.min.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_fr.min.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_ge.min.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_gl.min.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_he.min.js │ │ │ │ │ ├── messages_hi.js │ │ │ │ │ ├── messages_hi.min.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hr.min.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hu.min.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_id.min.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_is.min.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_it.min.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ja.min.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_ka.min.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_kk.min.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_ko.min.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lt.min.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_lv.min.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_mk.min.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_my.min.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_nl.min.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_no.min.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pl.min.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ro.min.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_ru.min.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_sd.min.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_si.min.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sk.min.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sl.min.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr.min.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_sv.min.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_th.min.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tj.min.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_tr.min.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_uk.min.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_ur.min.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_vi.min.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh.min.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_de.min.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_fi.min.js │ │ │ │ │ ├── methods_it.js │ │ │ │ │ ├── methods_it.min.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ ├── methods_nl.min.js │ │ │ │ │ ├── methods_pt.js │ │ │ │ │ └── methods_pt.min.js │ │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ │ ├── lodash │ │ │ │ └── lodash.min.js │ │ │ │ ├── luxon │ │ │ │ ├── luxon.js │ │ │ │ ├── luxon.js.map │ │ │ │ ├── luxon.min.js │ │ │ │ └── luxon.min.js.map │ │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ │ ├── mCSB_buttons.png │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ │ ├── moment │ │ │ │ ├── locale │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-ps.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── bn-bd.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bo.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cv.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dv.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-ie.js │ │ │ │ │ ├── en-il.js │ │ │ │ │ ├── en-in.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── en-sg.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-do.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fil.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fy.js │ │ │ │ │ ├── ga.js │ │ │ │ │ ├── gd.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gom-deva.js │ │ │ │ │ ├── gom-latn.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy-am.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it-ch.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── jv.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── kn.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku-kmr.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── ky.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lo.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── mi.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ml.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── mr.js │ │ │ │ │ ├── ms-my.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── mt.js │ │ │ │ │ ├── my.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl-be.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── oc-lnc.js │ │ │ │ │ ├── pa-in.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sd.js │ │ │ │ │ ├── se.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── ss.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── tet.js │ │ │ │ │ ├── tg.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ ├── tlh.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tzl.js │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ ├── tzm.js │ │ │ │ │ ├── ug-cn.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── ur.js │ │ │ │ │ ├── uz-latn.js │ │ │ │ │ ├── uz.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── x-pseudo.js │ │ │ │ │ ├── yo.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh-hk.js │ │ │ │ │ ├── zh-mo.js │ │ │ │ │ └── zh-tw.js │ │ │ │ └── moment.min.js │ │ │ │ ├── select2 │ │ │ │ ├── css │ │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ └── select2.min.js │ │ │ │ ├── sweetalert2 │ │ │ │ ├── sweetalert2.all.js │ │ │ │ ├── sweetalert2.all.min.js │ │ │ │ ├── sweetalert2.css │ │ │ │ ├── sweetalert2.esm.all.js │ │ │ │ ├── sweetalert2.esm.all.min.js │ │ │ │ ├── sweetalert2.esm.js │ │ │ │ ├── sweetalert2.esm.min.js │ │ │ │ ├── sweetalert2.js │ │ │ │ ├── sweetalert2.min.css │ │ │ │ └── sweetalert2.min.js │ │ │ │ └── timeago │ │ │ │ ├── jquery.timeago.js │ │ │ │ └── locales │ │ │ │ ├── README.md │ │ │ │ ├── jquery.timeago.af.js │ │ │ │ ├── jquery.timeago.am.js │ │ │ │ ├── jquery.timeago.ar.js │ │ │ │ ├── jquery.timeago.az-short.js │ │ │ │ ├── jquery.timeago.az.js │ │ │ │ ├── jquery.timeago.be.js │ │ │ │ ├── jquery.timeago.bg.js │ │ │ │ ├── jquery.timeago.bs.js │ │ │ │ ├── jquery.timeago.ca.js │ │ │ │ ├── jquery.timeago.cs.js │ │ │ │ ├── jquery.timeago.cy.js │ │ │ │ ├── jquery.timeago.da.js │ │ │ │ ├── jquery.timeago.de-short.js │ │ │ │ ├── jquery.timeago.de.js │ │ │ │ ├── jquery.timeago.dv.js │ │ │ │ ├── jquery.timeago.el.js │ │ │ │ ├── jquery.timeago.en-short.js │ │ │ │ ├── jquery.timeago.en.js │ │ │ │ ├── jquery.timeago.es-short.js │ │ │ │ ├── jquery.timeago.es.js │ │ │ │ ├── jquery.timeago.et.js │ │ │ │ ├── jquery.timeago.eu.js │ │ │ │ ├── jquery.timeago.fa-short.js │ │ │ │ ├── jquery.timeago.fa.js │ │ │ │ ├── jquery.timeago.fi.js │ │ │ │ ├── jquery.timeago.fr-short.js │ │ │ │ ├── jquery.timeago.fr.js │ │ │ │ ├── jquery.timeago.gl.js │ │ │ │ ├── jquery.timeago.he.js │ │ │ │ ├── jquery.timeago.hr.js │ │ │ │ ├── jquery.timeago.hu.js │ │ │ │ ├── jquery.timeago.hy.js │ │ │ │ ├── jquery.timeago.id.js │ │ │ │ ├── jquery.timeago.is.js │ │ │ │ ├── jquery.timeago.it-short.js │ │ │ │ ├── jquery.timeago.it.js │ │ │ │ ├── jquery.timeago.ja.js │ │ │ │ ├── jquery.timeago.jv.js │ │ │ │ ├── jquery.timeago.ko.js │ │ │ │ ├── jquery.timeago.ky.js │ │ │ │ ├── jquery.timeago.lt.js │ │ │ │ ├── jquery.timeago.lv.js │ │ │ │ ├── jquery.timeago.mk.js │ │ │ │ ├── jquery.timeago.nl.js │ │ │ │ ├── jquery.timeago.no.js │ │ │ │ ├── jquery.timeago.pl.js │ │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ │ ├── jquery.timeago.pt-br.js │ │ │ │ ├── jquery.timeago.pt-short.js │ │ │ │ ├── jquery.timeago.pt.js │ │ │ │ ├── jquery.timeago.ro.js │ │ │ │ ├── jquery.timeago.rs.js │ │ │ │ ├── jquery.timeago.ru.js │ │ │ │ ├── jquery.timeago.rw.js │ │ │ │ ├── jquery.timeago.si.js │ │ │ │ ├── jquery.timeago.sk.js │ │ │ │ ├── jquery.timeago.sl.js │ │ │ │ ├── jquery.timeago.sq.js │ │ │ │ ├── jquery.timeago.sr.js │ │ │ │ ├── jquery.timeago.sv.js │ │ │ │ ├── jquery.timeago.th.js │ │ │ │ ├── jquery.timeago.tr-short.js │ │ │ │ ├── jquery.timeago.tr.js │ │ │ │ ├── jquery.timeago.uk.js │ │ │ │ ├── jquery.timeago.ur.js │ │ │ │ ├── jquery.timeago.uz.js │ │ │ │ ├── jquery.timeago.vi.js │ │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ │ └── jquery.timeago.zh-TW.js │ │ └── yarn.lock │ └── EasyAbp.BookingService.Orleans.Web.Unified │ │ ├── BookingServiceOrleansWebUnifiedModule.cs │ │ ├── EasyAbp.BookingService.Orleans.Web.Unified.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Web.Unified.csproj │ │ ├── EntityFrameworkCore │ │ ├── UnifiedDbContext.cs │ │ └── UnifiedDbContextFactory.cs │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Migrations │ │ ├── 20211124020406_Initial.Designer.cs │ │ ├── 20211124020406_Initial.cs │ │ ├── 20220609050739_AddedEntities.Designer.cs │ │ ├── 20220609050739_AddedEntities.cs │ │ ├── 20220609053940_AddedVolume.Designer.cs │ │ ├── 20220609053940_AddedVolume.cs │ │ ├── 20220622050414_AddedAssetOccupancyCount.Designer.cs │ │ ├── 20220622050414_AddedAssetOccupancyCount.cs │ │ ├── 20220622050535_ConfiguredPeriod.Designer.cs │ │ ├── 20220622050535_ConfiguredPeriod.cs │ │ ├── 20230113183212_UpgradedToAbp7.Designer.cs │ │ ├── 20230113183212_UpgradedToAbp7.cs │ │ ├── 20230323082606_UpgradedToAbp_7_1.Designer.cs │ │ ├── 20230323082606_UpgradedToAbp_7_1.cs │ │ ├── 20230503130853_UpgradedToAbp_7_2.Designer.cs │ │ ├── 20230503130853_UpgradedToAbp_7_2.cs │ │ ├── 20231227130356_UpgradedToAbp_8_0.Designer.cs │ │ ├── 20231227130356_UpgradedToAbp_8_0.cs │ │ ├── 20240414204820_UpgradedToAbp_8_1.Designer.cs │ │ ├── 20240414204820_UpgradedToAbp_8_1.cs │ │ ├── 20240730112307_UpgradedToAbp_8_2.Designer.cs │ │ ├── 20240730112307_UpgradedToAbp_8_2.cs │ │ ├── 20241229122852_UpgradedToAbp_9_0.Designer.cs │ │ ├── 20241229122852_UpgradedToAbp_9_0.cs │ │ ├── 20250330145115_Upgraded_To_Abp_9_1.Designer.cs │ │ ├── 20250330145115_Upgraded_To_Abp_9_1.cs │ │ ├── 20250909184332_Upgraded_To_Abp_9_3.Designer.cs │ │ ├── 20250909184332_Upgraded_To_Abp_9_3.cs │ │ └── UnifiedDbContextModelSnapshot.cs │ │ ├── Pages │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── abp.resourcemapping.js │ │ ├── appsettings.json │ │ ├── appsettings.secrets.json │ │ ├── package.json │ │ ├── wwwroot │ │ └── libs │ │ │ ├── @fortawesome │ │ │ └── fontawesome-free │ │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ └── v4-shims.css │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ ├── abp │ │ │ ├── core │ │ │ │ ├── abp.css │ │ │ │ └── abp.js │ │ │ ├── jquery │ │ │ │ └── abp.jquery.js │ │ │ ├── luxon │ │ │ │ └── abp.luxon.js │ │ │ └── utils │ │ │ │ ├── abp-utils.umd.js │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ ├── bootstrap-datepicker │ │ │ ├── bootstrap-datepicker.css.map │ │ │ ├── bootstrap-datepicker.min.css │ │ │ ├── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.ar-DZ.min.js │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ ├── bootstrap-datepicker.en-US.min.js │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ ├── bootstrap-datepicker.mr.min.js │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ ├── bootstrap-daterangepicker │ │ │ ├── daterangepicker.css │ │ │ └── daterangepicker.js │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ │ ├── datatables.net-bs5 │ │ │ ├── css │ │ │ │ └── dataTables.bootstrap5.css │ │ │ └── js │ │ │ │ └── dataTables.bootstrap5.js │ │ │ ├── datatables.net │ │ │ └── js │ │ │ │ └── dataTables.min.js │ │ │ ├── jquery-form │ │ │ └── jquery.form.min.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ ├── jquery.validate.js │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_ar.min.js │ │ │ │ ├── messages_az.js │ │ │ │ ├── messages_az.min.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bg.min.js │ │ │ │ ├── messages_bn_BD.js │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_ca.min.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_cs.min.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_da.min.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_de.min.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_el.min.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es.min.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ ├── messages_es_PE.js │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_et.min.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_eu.min.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fa.min.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fi.min.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_fr.min.js │ │ │ │ ├── messages_ge.js │ │ │ │ ├── messages_ge.min.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_gl.min.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_he.min.js │ │ │ │ ├── messages_hi.js │ │ │ │ ├── messages_hi.min.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hr.min.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hu.min.js │ │ │ │ ├── messages_hy_AM.js │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_id.min.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_is.min.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_it.min.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ja.min.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_ka.min.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_kk.min.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_ko.min.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lt.min.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_lv.min.js │ │ │ │ ├── messages_mk.js │ │ │ │ ├── messages_mk.min.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_my.min.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_nl.min.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_no.min.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pl.min.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ro.min.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_ru.min.js │ │ │ │ ├── messages_sd.js │ │ │ │ ├── messages_sd.min.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_si.min.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sk.min.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sl.min.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr.min.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_sv.min.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_th.min.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tj.min.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_tr.min.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_uk.min.js │ │ │ │ ├── messages_ur.js │ │ │ │ ├── messages_ur.min.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_vi.min.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh.min.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_de.min.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_fi.min.js │ │ │ │ ├── methods_it.js │ │ │ │ ├── methods_it.min.js │ │ │ │ ├── methods_nl.js │ │ │ │ ├── methods_nl.min.js │ │ │ │ ├── methods_pt.js │ │ │ │ └── methods_pt.min.js │ │ │ ├── jquery │ │ │ └── jquery.js │ │ │ ├── lodash │ │ │ └── lodash.min.js │ │ │ ├── luxon │ │ │ ├── luxon.js │ │ │ ├── luxon.js.map │ │ │ ├── luxon.min.js │ │ │ └── luxon.min.js.map │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ ├── mCSB_buttons.png │ │ │ ├── package.json │ │ │ └── readme.md │ │ │ ├── moment │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-ps.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn-bd.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-in.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── en-sg.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fil.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-deva.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku-kmr.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── oc-lnc.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ ├── zh-mo.js │ │ │ │ └── zh-tw.js │ │ │ └── moment.min.js │ │ │ ├── select2 │ │ │ ├── css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── dsb.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hsb.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── ps.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.full.min.js │ │ │ │ └── select2.min.js │ │ │ ├── sweetalert2 │ │ │ ├── sweetalert2.all.js │ │ │ ├── sweetalert2.all.min.js │ │ │ ├── sweetalert2.css │ │ │ ├── sweetalert2.esm.all.js │ │ │ ├── sweetalert2.esm.all.min.js │ │ │ ├── sweetalert2.esm.js │ │ │ ├── sweetalert2.esm.min.js │ │ │ ├── sweetalert2.js │ │ │ ├── sweetalert2.min.css │ │ │ └── sweetalert2.min.js │ │ │ └── timeago │ │ │ ├── jquery.timeago.js │ │ │ └── locales │ │ │ ├── README.md │ │ │ ├── jquery.timeago.af.js │ │ │ ├── jquery.timeago.am.js │ │ │ ├── jquery.timeago.ar.js │ │ │ ├── jquery.timeago.az-short.js │ │ │ ├── jquery.timeago.az.js │ │ │ ├── jquery.timeago.be.js │ │ │ ├── jquery.timeago.bg.js │ │ │ ├── jquery.timeago.bs.js │ │ │ ├── jquery.timeago.ca.js │ │ │ ├── jquery.timeago.cs.js │ │ │ ├── jquery.timeago.cy.js │ │ │ ├── jquery.timeago.da.js │ │ │ ├── jquery.timeago.de-short.js │ │ │ ├── jquery.timeago.de.js │ │ │ ├── jquery.timeago.dv.js │ │ │ ├── jquery.timeago.el.js │ │ │ ├── jquery.timeago.en-short.js │ │ │ ├── jquery.timeago.en.js │ │ │ ├── jquery.timeago.es-short.js │ │ │ ├── jquery.timeago.es.js │ │ │ ├── jquery.timeago.et.js │ │ │ ├── jquery.timeago.eu.js │ │ │ ├── jquery.timeago.fa-short.js │ │ │ ├── jquery.timeago.fa.js │ │ │ ├── jquery.timeago.fi.js │ │ │ ├── jquery.timeago.fr-short.js │ │ │ ├── jquery.timeago.fr.js │ │ │ ├── jquery.timeago.gl.js │ │ │ ├── jquery.timeago.he.js │ │ │ ├── jquery.timeago.hr.js │ │ │ ├── jquery.timeago.hu.js │ │ │ ├── jquery.timeago.hy.js │ │ │ ├── jquery.timeago.id.js │ │ │ ├── jquery.timeago.is.js │ │ │ ├── jquery.timeago.it-short.js │ │ │ ├── jquery.timeago.it.js │ │ │ ├── jquery.timeago.ja.js │ │ │ ├── jquery.timeago.jv.js │ │ │ ├── jquery.timeago.ko.js │ │ │ ├── jquery.timeago.ky.js │ │ │ ├── jquery.timeago.lt.js │ │ │ ├── jquery.timeago.lv.js │ │ │ ├── jquery.timeago.mk.js │ │ │ ├── jquery.timeago.nl.js │ │ │ ├── jquery.timeago.no.js │ │ │ ├── jquery.timeago.pl.js │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ ├── jquery.timeago.pt-br.js │ │ │ ├── jquery.timeago.pt-short.js │ │ │ ├── jquery.timeago.pt.js │ │ │ ├── jquery.timeago.ro.js │ │ │ ├── jquery.timeago.rs.js │ │ │ ├── jquery.timeago.ru.js │ │ │ ├── jquery.timeago.rw.js │ │ │ ├── jquery.timeago.si.js │ │ │ ├── jquery.timeago.sk.js │ │ │ ├── jquery.timeago.sl.js │ │ │ ├── jquery.timeago.sq.js │ │ │ ├── jquery.timeago.sr.js │ │ │ ├── jquery.timeago.sv.js │ │ │ ├── jquery.timeago.th.js │ │ │ ├── jquery.timeago.tr-short.js │ │ │ ├── jquery.timeago.tr.js │ │ │ ├── jquery.timeago.uk.js │ │ │ ├── jquery.timeago.ur.js │ │ │ ├── jquery.timeago.uz.js │ │ │ ├── jquery.timeago.vi.js │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ └── jquery.timeago.zh-TW.js │ │ └── yarn.lock ├── src │ ├── EasyAbp.BookingService.Orleans.Application.Contracts │ │ ├── EasyAbp.BookingService.Orleans.Application.Contracts.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Application.Contracts.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ └── BookingServiceOrleansApplicationContractsModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.Application │ │ ├── EasyAbp.BookingService.Orleans.Application.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Application.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ ├── BookingServiceOrleansAppService.cs │ │ │ │ ├── BookingServiceOrleansApplicationAutoMapperProfile.cs │ │ │ │ └── BookingServiceOrleansApplicationModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.Blazor.Server │ │ ├── BookingServiceOrleansBlazorServerModule.cs │ │ ├── EasyAbp.BookingService.Orleans.Blazor.Server.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Blazor.Server.csproj │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.Blazor.WebAssembly │ │ ├── BookingServiceOrleansBlazorWebAssemblyModule.cs │ │ ├── EasyAbp.BookingService.Orleans.Blazor.WebAssembly.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Blazor.WebAssembly.csproj │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.Blazor │ │ ├── BookingServiceOrleansBlazorAutoMapperProfile.cs │ │ ├── BookingServiceOrleansBlazorModule.cs │ │ ├── EasyAbp.BookingService.Orleans.Blazor.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Blazor.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Menus │ │ │ ├── BookingServiceOrleansMenuContributor.cs │ │ │ └── BookingServiceOrleansMenus.cs │ │ └── _Imports.razor │ ├── EasyAbp.BookingService.Orleans.Domain.Shared │ │ ├── EasyAbp.BookingService.Orleans.Domain.Shared.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ ├── BookingServiceOrleansDomainSharedModule.cs │ │ │ │ ├── BookingServiceOrleansUrls.cs │ │ │ │ └── EasyAbp.BookingService.Orleans.Domain.Shared.abppkg.json │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.Domain │ │ ├── EasyAbp.BookingService.Orleans.Domain.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Domain.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ ├── AssetOccupancyProviders │ │ │ │ ├── AssetOccupancyCountModel.cs │ │ │ │ ├── AssetOccupancyGrain.cs │ │ │ │ ├── AssetOccupancyGrainExtensions.cs │ │ │ │ ├── AssetOccupancyStateModel.cs │ │ │ │ ├── IAssetOccupancyGrain.cs │ │ │ │ └── OrleansAssetOccupancyProvider.cs │ │ │ │ ├── BookingServiceOrleansDomainModule.cs │ │ │ │ └── Settings │ │ │ │ ├── BookingServiceOrleansSettingDefinitionProvider.cs │ │ │ │ └── BookingServiceOrleansSettings.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.EntityFrameworkCore │ │ ├── EasyAbp.BookingService.Orleans.EntityFrameworkCore.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.EntityFrameworkCore.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ └── EntityFrameworkCore │ │ │ │ ├── BookingServiceDbContext.cs │ │ │ │ ├── BookingServiceDbContextModelCreatingExtensions.cs │ │ │ │ ├── BookingServiceEntityFrameworkCoreModule.cs │ │ │ │ └── IBookingServiceDbContext.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.HttpApi.Client │ │ ├── EasyAbp.BookingService.Orleans.HttpApi.Client.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.HttpApi.Client.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ └── BookingServiceOrleansHttpApiClientModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.HttpApi │ │ ├── EasyAbp.BookingService.Orleans.HttpApi.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.HttpApi.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ └── BookingServiceOrleansHttpApiModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.Installer │ │ ├── EasyAbp.BookingService.Orleans.Installer.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ └── BookingServiceOrleansInstallerModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.MongoDB │ │ ├── EasyAbp.BookingService.Orleans.MongoDB.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.MongoDB.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ └── MongoDB │ │ │ │ ├── BookingServiceMongoDbContext.cs │ │ │ │ ├── BookingServiceMongoDbContextExtensions.cs │ │ │ │ ├── BookingServiceMongoDbModule.cs │ │ │ │ └── IBookingServiceMongoDbContext.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ └── EasyAbp.BookingService.Orleans.Web │ │ ├── BookingServiceOrleansWebAutoMapperProfile.cs │ │ ├── BookingServiceOrleansWebModule.cs │ │ ├── EasyAbp.BookingService.Orleans.Web.abppkg.json │ │ ├── EasyAbp.BookingService.Orleans.Web.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Menus │ │ ├── BookingServiceOrleansMenuContributor.cs │ │ └── BookingServiceOrleansMenus.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ └── yarn.lock └── test │ ├── EasyAbp.BookingService.Orleans.Application.Tests │ ├── BookingServiceOrleansApplicationTestBase.cs │ ├── BookingServiceOrleansApplicationTestModule.cs │ ├── EasyAbp.BookingService.Orleans.Application.Tests.abppkg.json │ ├── EasyAbp.BookingService.Orleans.Application.Tests.csproj │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.Domain.Tests │ ├── AssetOccupancyProviders │ │ └── AssetOccupancyGrainTests.cs │ ├── BookingServiceOrleansDomainTestBase.cs │ ├── BookingServiceOrleansDomainTestModule.cs │ ├── ClusterCollection.cs │ ├── ClusterFixture.cs │ ├── EasyAbp.BookingService.Orleans.Domain.Tests.abppkg.json │ ├── EasyAbp.BookingService.Orleans.Domain.Tests.csproj │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.EntityFrameworkCore.Tests │ ├── EasyAbp.BookingService.Orleans.EntityFrameworkCore.Tests.abppkg.json │ ├── EasyAbp.BookingService.Orleans.EntityFrameworkCore.Tests.csproj │ ├── EntityFrameworkCore │ │ ├── BookingServiceOrleansEntityFrameworkCoreTestBase.cs │ │ └── BookingServiceOrleansEntityFrameworkCoreTestModule.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Orleans.HttpApi.Client.ConsoleTestApp │ ├── BookingServiceOrleansConsoleApiClientModule.cs │ ├── ClientDemoService.cs │ ├── ConsoleTestAppHostedService.cs │ ├── EasyAbp.BookingService.Orleans.HttpApi.Client.ConsoleTestApp.abppkg.json │ ├── EasyAbp.BookingService.Orleans.HttpApi.Client.ConsoleTestApp.csproj │ ├── Program.cs │ ├── appsettings.json │ └── appsettings.secrets.json │ ├── EasyAbp.BookingService.Orleans.MongoDB.Tests │ ├── EasyAbp.BookingService.Orleans.MongoDB.Tests.abppkg.json │ ├── EasyAbp.BookingService.Orleans.MongoDB.Tests.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ └── MongoDB │ │ ├── BookingServiceOrleansMongoDbTestBase.cs │ │ ├── BookingServiceOrleansMongoDbTestModule.cs │ │ ├── MongoDbFixture.cs │ │ └── MongoTestCollection.cs │ └── EasyAbp.BookingService.Orleans.TestBase │ ├── BookingServiceOrleansDataSeedContributor.cs │ ├── BookingServiceOrleansTestBaseModule.cs │ ├── BookingServiceTestBase.cs │ ├── EasyAbp.BookingService.Orleans.TestBase.abppkg.json │ ├── EasyAbp.BookingService.Orleans.TestBase.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ └── Security │ └── FakeCurrentPrincipalAccessor.cs ├── BookingService ├── .prettierrc ├── EasyAbp.BookingService.abpmdl.json ├── EasyAbp.BookingService.abpsln.json ├── EasyAbp.BookingService.sln ├── EasyAbp.BookingService.sln.DotSettings ├── NuGet.Config ├── angular │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc │ ├── .vscode │ │ └── extensions.json │ ├── README.md │ ├── angular.json │ ├── package.json │ ├── projects │ │ ├── booking-service │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── ng-package.json │ │ │ │ └── src │ │ │ │ │ ├── booking-service-config.module.ts │ │ │ │ │ ├── enums │ │ │ │ │ ├── index.ts │ │ │ │ │ └── route-names.ts │ │ │ │ │ ├── providers │ │ │ │ │ ├── index.ts │ │ │ │ │ └── route.provider.ts │ │ │ │ │ └── public-api.ts │ │ │ ├── karma.conf.js │ │ │ ├── ng-package.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── lib │ │ │ │ │ ├── booking-service-routing.module.ts │ │ │ │ │ ├── booking-service.component.spec.ts │ │ │ │ │ ├── booking-service.module.ts │ │ │ │ │ ├── booking-service.service.spec.ts │ │ │ │ │ ├── components │ │ │ │ │ │ └── booking-service.component.ts │ │ │ │ │ └── services │ │ │ │ │ │ └── booking-service.service.ts │ │ │ │ ├── public-api.ts │ │ │ │ └── test.ts │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ └── dev-app │ │ │ ├── .browserslistrc │ │ │ ├── .eslintrc.json │ │ │ ├── karma.conf.js │ │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── home │ │ │ │ │ ├── home-routing.module.ts │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.ts │ │ │ │ │ └── home.module.ts │ │ │ │ ├── route.provider.ts │ │ │ │ └── shared │ │ │ │ │ └── shared.module.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.scss │ │ │ └── test.ts │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.prod.json │ │ │ └── tsconfig.spec.json │ ├── tsconfig.json │ ├── tsconfig.prod.json │ └── yarn.lock ├── database │ ├── Dockerfile │ └── entrypoint.sh ├── docker-compose.migrations.yml ├── docker-compose.override.yml ├── docker-compose.yml ├── host │ ├── EasyAbp.BookingService.Blazor.Host │ │ ├── BookingServiceBlazorHostAutoMapperProfile.cs │ │ ├── BookingServiceBlazorHostBundleContributor.cs │ │ ├── BookingServiceBlazorHostModule.cs │ │ ├── BookingServiceHostBrandingProvider.cs │ │ ├── BookingServiceHostMenuContributor.cs │ │ ├── EasyAbp.BookingService.Blazor.Host.abppkg.json │ │ ├── EasyAbp.BookingService.Blazor.Host.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Pages │ │ │ └── Index.razor │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── _Imports.razor │ │ └── wwwroot │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── favicon.ico │ │ │ ├── global.css │ │ │ ├── global.js │ │ │ ├── index.html │ │ │ └── main.css │ ├── EasyAbp.BookingService.Blazor.Server.Host │ │ ├── BookingServiceBlazorHostModule.cs │ │ ├── BookingServiceBrandingProvider.cs │ │ ├── BookingServiceComponentBase.cs │ │ ├── EasyAbp.BookingService.Blazor.Server.Host.abppkg.json │ │ ├── EasyAbp.BookingService.Blazor.Server.Host.csproj │ │ ├── EntityFrameworkCore │ │ │ ├── UnifiedDbContext.cs │ │ │ └── UnifiedDbContextFactory.cs │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Menus │ │ │ ├── BookingServiceMenuContributor.cs │ │ │ └── BookingServiceMenus.cs │ │ ├── Migrations │ │ │ ├── 20211124020351_Initial.Designer.cs │ │ │ ├── 20211124020351_Initial.cs │ │ │ ├── 20230113183755_UpgradedToAbp7.Designer.cs │ │ │ ├── 20230113183755_UpgradedToAbp7.cs │ │ │ ├── 20230323082633_UpgradedToAbp_7_1.Designer.cs │ │ │ ├── 20230323082633_UpgradedToAbp_7_1.cs │ │ │ ├── 20230503130902_UpgradedToAbp_7_2.Designer.cs │ │ │ ├── 20230503130902_UpgradedToAbp_7_2.cs │ │ │ ├── 20231227130955_UpgradedToAbp_8_0.Designer.cs │ │ │ ├── 20231227130955_UpgradedToAbp_8_0.cs │ │ │ ├── 20240414204307_UpgradedToAbp_8_1.Designer.cs │ │ │ ├── 20240414204307_UpgradedToAbp_8_1.cs │ │ │ ├── 20240730112223_UpgradedToAbp_8_2.Designer.cs │ │ │ ├── 20240730112223_UpgradedToAbp_8_2.cs │ │ │ ├── 20241229123006_UpgradedToAbp_9_0.Designer.cs │ │ │ ├── 20241229123006_UpgradedToAbp_9_0.cs │ │ │ ├── 20250330145133_Upgraded_To_Abp_9_1.Designer.cs │ │ │ ├── 20250330145133_Upgraded_To_Abp_9_1.cs │ │ │ ├── 20250909184404_Upgraded_To_Abp_9_3.Designer.cs │ │ │ ├── 20250909184404_Upgraded_To_Abp_9_3.cs │ │ │ └── UnifiedDbContextModelSnapshot.cs │ │ ├── Pages │ │ │ ├── Index.razor │ │ │ ├── Index.razor.cs │ │ │ ├── Index.razor.css │ │ │ ├── _Host.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── _Imports.razor │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── appsettings.secrets.json │ │ ├── package.json │ │ ├── tempkey.jwk │ │ ├── wwwroot │ │ │ ├── blazor-global-styles.css │ │ │ ├── favicon.ico │ │ │ ├── global-styles.css │ │ │ └── libs │ │ │ │ ├── @fortawesome │ │ │ │ └── fontawesome-free │ │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ └── v4-shims.css │ │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ │ ├── abp │ │ │ │ ├── core │ │ │ │ │ ├── abp.css │ │ │ │ │ └── abp.js │ │ │ │ ├── jquery │ │ │ │ │ └── abp.jquery.js │ │ │ │ ├── luxon │ │ │ │ │ └── abp.luxon.js │ │ │ │ └── utils │ │ │ │ │ ├── abp-utils.umd.js │ │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ │ ├── bootstrap-datepicker │ │ │ │ ├── bootstrap-datepicker.css.map │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ ├── bootstrap-datepicker.min.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-DZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-US.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ │ ├── bootstrap-datepicker.mr.min.js │ │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ │ ├── bootstrap-daterangepicker │ │ │ │ ├── daterangepicker.css │ │ │ │ └── daterangepicker.js │ │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ │ │ ├── datatables.net-bs5 │ │ │ │ ├── css │ │ │ │ │ └── dataTables.bootstrap5.css │ │ │ │ └── js │ │ │ │ │ └── dataTables.bootstrap5.js │ │ │ │ ├── datatables.net │ │ │ │ └── js │ │ │ │ │ └── dataTables.min.js │ │ │ │ ├── jquery-form │ │ │ │ └── jquery.form.min.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── jquery.validate.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_ar.min.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_az.min.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bg.min.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_ca.min.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_cs.min.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_da.min.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_de.min.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_el.min.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es.min.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_et.min.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_eu.min.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fa.min.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fi.min.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_fr.min.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_ge.min.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_gl.min.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_he.min.js │ │ │ │ │ ├── messages_hi.js │ │ │ │ │ ├── messages_hi.min.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hr.min.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hu.min.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_id.min.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_is.min.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_it.min.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ja.min.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_ka.min.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_kk.min.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_ko.min.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lt.min.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_lv.min.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_mk.min.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_my.min.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_nl.min.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_no.min.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pl.min.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ro.min.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_ru.min.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_sd.min.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_si.min.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sk.min.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sl.min.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr.min.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_sv.min.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_th.min.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tj.min.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_tr.min.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_uk.min.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_ur.min.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_vi.min.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh.min.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_de.min.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_fi.min.js │ │ │ │ │ ├── methods_it.js │ │ │ │ │ ├── methods_it.min.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ ├── methods_nl.min.js │ │ │ │ │ ├── methods_pt.js │ │ │ │ │ └── methods_pt.min.js │ │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ │ ├── lodash │ │ │ │ └── lodash.min.js │ │ │ │ ├── luxon │ │ │ │ ├── luxon.js │ │ │ │ ├── luxon.js.map │ │ │ │ ├── luxon.min.js │ │ │ │ └── luxon.min.js.map │ │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ │ ├── mCSB_buttons.png │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ │ ├── moment │ │ │ │ ├── locale │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-ps.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── bn-bd.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bo.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cv.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dv.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-ie.js │ │ │ │ │ ├── en-il.js │ │ │ │ │ ├── en-in.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── en-sg.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-do.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fil.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fy.js │ │ │ │ │ ├── ga.js │ │ │ │ │ ├── gd.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gom-deva.js │ │ │ │ │ ├── gom-latn.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy-am.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it-ch.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── jv.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── kn.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku-kmr.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── ky.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lo.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── mi.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ml.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── mr.js │ │ │ │ │ ├── ms-my.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── mt.js │ │ │ │ │ ├── my.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl-be.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── oc-lnc.js │ │ │ │ │ ├── pa-in.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sd.js │ │ │ │ │ ├── se.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── ss.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── tet.js │ │ │ │ │ ├── tg.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ ├── tlh.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tzl.js │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ ├── tzm.js │ │ │ │ │ ├── ug-cn.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── ur.js │ │ │ │ │ ├── uz-latn.js │ │ │ │ │ ├── uz.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── x-pseudo.js │ │ │ │ │ ├── yo.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh-hk.js │ │ │ │ │ ├── zh-mo.js │ │ │ │ │ └── zh-tw.js │ │ │ │ └── moment.min.js │ │ │ │ ├── select2 │ │ │ │ ├── css │ │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ └── select2.min.js │ │ │ │ ├── sweetalert2 │ │ │ │ ├── sweetalert2.all.js │ │ │ │ ├── sweetalert2.all.min.js │ │ │ │ ├── sweetalert2.css │ │ │ │ ├── sweetalert2.esm.all.js │ │ │ │ ├── sweetalert2.esm.all.min.js │ │ │ │ ├── sweetalert2.esm.js │ │ │ │ ├── sweetalert2.esm.min.js │ │ │ │ ├── sweetalert2.js │ │ │ │ ├── sweetalert2.min.css │ │ │ │ └── sweetalert2.min.js │ │ │ │ └── timeago │ │ │ │ ├── jquery.timeago.js │ │ │ │ └── locales │ │ │ │ ├── README.md │ │ │ │ ├── jquery.timeago.af.js │ │ │ │ ├── jquery.timeago.am.js │ │ │ │ ├── jquery.timeago.ar.js │ │ │ │ ├── jquery.timeago.az-short.js │ │ │ │ ├── jquery.timeago.az.js │ │ │ │ ├── jquery.timeago.be.js │ │ │ │ ├── jquery.timeago.bg.js │ │ │ │ ├── jquery.timeago.bs.js │ │ │ │ ├── jquery.timeago.ca.js │ │ │ │ ├── jquery.timeago.cs.js │ │ │ │ ├── jquery.timeago.cy.js │ │ │ │ ├── jquery.timeago.da.js │ │ │ │ ├── jquery.timeago.de-short.js │ │ │ │ ├── jquery.timeago.de.js │ │ │ │ ├── jquery.timeago.dv.js │ │ │ │ ├── jquery.timeago.el.js │ │ │ │ ├── jquery.timeago.en-short.js │ │ │ │ ├── jquery.timeago.en.js │ │ │ │ ├── jquery.timeago.es-short.js │ │ │ │ ├── jquery.timeago.es.js │ │ │ │ ├── jquery.timeago.et.js │ │ │ │ ├── jquery.timeago.eu.js │ │ │ │ ├── jquery.timeago.fa-short.js │ │ │ │ ├── jquery.timeago.fa.js │ │ │ │ ├── jquery.timeago.fi.js │ │ │ │ ├── jquery.timeago.fr-short.js │ │ │ │ ├── jquery.timeago.fr.js │ │ │ │ ├── jquery.timeago.gl.js │ │ │ │ ├── jquery.timeago.he.js │ │ │ │ ├── jquery.timeago.hr.js │ │ │ │ ├── jquery.timeago.hu.js │ │ │ │ ├── jquery.timeago.hy.js │ │ │ │ ├── jquery.timeago.id.js │ │ │ │ ├── jquery.timeago.is.js │ │ │ │ ├── jquery.timeago.it-short.js │ │ │ │ ├── jquery.timeago.it.js │ │ │ │ ├── jquery.timeago.ja.js │ │ │ │ ├── jquery.timeago.jv.js │ │ │ │ ├── jquery.timeago.ko.js │ │ │ │ ├── jquery.timeago.ky.js │ │ │ │ ├── jquery.timeago.lt.js │ │ │ │ ├── jquery.timeago.lv.js │ │ │ │ ├── jquery.timeago.mk.js │ │ │ │ ├── jquery.timeago.nl.js │ │ │ │ ├── jquery.timeago.no.js │ │ │ │ ├── jquery.timeago.pl.js │ │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ │ ├── jquery.timeago.pt-br.js │ │ │ │ ├── jquery.timeago.pt-short.js │ │ │ │ ├── jquery.timeago.pt.js │ │ │ │ ├── jquery.timeago.ro.js │ │ │ │ ├── jquery.timeago.rs.js │ │ │ │ ├── jquery.timeago.ru.js │ │ │ │ ├── jquery.timeago.rw.js │ │ │ │ ├── jquery.timeago.si.js │ │ │ │ ├── jquery.timeago.sk.js │ │ │ │ ├── jquery.timeago.sl.js │ │ │ │ ├── jquery.timeago.sq.js │ │ │ │ ├── jquery.timeago.sr.js │ │ │ │ ├── jquery.timeago.sv.js │ │ │ │ ├── jquery.timeago.th.js │ │ │ │ ├── jquery.timeago.tr-short.js │ │ │ │ ├── jquery.timeago.tr.js │ │ │ │ ├── jquery.timeago.uk.js │ │ │ │ ├── jquery.timeago.ur.js │ │ │ │ ├── jquery.timeago.uz.js │ │ │ │ ├── jquery.timeago.vi.js │ │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ │ └── jquery.timeago.zh-TW.js │ │ └── yarn.lock │ ├── EasyAbp.BookingService.Host.Shared │ │ ├── EasyAbp.BookingService.Host.Shared.abppkg.json │ │ ├── EasyAbp.BookingService.Host.Shared.csproj │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.HttpApi.Host │ │ ├── BookingServiceHttpApiHostModule.cs │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ ├── Dockerfile │ │ ├── EasyAbp.BookingService.HttpApi.Host.abppkg.json │ │ ├── EasyAbp.BookingService.HttpApi.Host.csproj │ │ ├── EntityFrameworkCore │ │ │ ├── BookingServiceHttpApiHostMigrationsDbContext.cs │ │ │ └── BookingServiceHttpApiHostMigrationsDbContextFactory.cs │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.json │ │ ├── appsettings.secrets.json │ │ └── yarn.lock │ ├── EasyAbp.BookingService.IdentityServer │ │ ├── BookingServiceIdentityServerModule.cs │ │ ├── Dockerfile │ │ ├── EasyAbp.BookingService.IdentityServer.abppkg.json │ │ ├── EasyAbp.BookingService.IdentityServer.csproj │ │ ├── EntityFrameworkCore │ │ │ ├── IdentityServerHostMigrationsDbContext.cs │ │ │ └── IdentityServerHostMigrationsDbContextFactory.cs │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── IdentityServer │ │ │ └── IdentityServerDataSeedContributor.cs │ │ ├── Migrations │ │ │ ├── 20211124020400_Initial.Designer.cs │ │ │ ├── 20211124020400_Initial.cs │ │ │ ├── 20230113183734_UpgradedToAbp7.Designer.cs │ │ │ ├── 20230113183734_UpgradedToAbp7.cs │ │ │ ├── 20230323082536_UpgradedToAbp_7_1.Designer.cs │ │ │ ├── 20230323082536_UpgradedToAbp_7_1.cs │ │ │ ├── 20230503130829_UpgradedToAbp_7_2.Designer.cs │ │ │ ├── 20230503130829_UpgradedToAbp_7_2.cs │ │ │ ├── 20231227130329_UpgradedToAbp_8_0.Designer.cs │ │ │ ├── 20231227130329_UpgradedToAbp_8_0.cs │ │ │ ├── 20240414204352_UpgradedToAbp_8_1.Designer.cs │ │ │ ├── 20240414204352_UpgradedToAbp_8_1.cs │ │ │ ├── 20240730112134_UpgradedToAbp_8_2.Designer.cs │ │ │ ├── 20240730112134_UpgradedToAbp_8_2.cs │ │ │ ├── 20241229122955_UpgradedToAbp_9_0.Designer.cs │ │ │ ├── 20241229122955_UpgradedToAbp_9_0.cs │ │ │ ├── 20250330145143_Upgraded_To_Abp_9_1.Designer.cs │ │ │ ├── 20250330145143_Upgraded_To_Abp_9_1.cs │ │ │ └── IdentityServerHostMigrationsDbContextModelSnapshot.cs │ │ ├── Pages │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── abp.resourcemapping.js │ │ ├── appsettings.json │ │ ├── appsettings.secrets.json │ │ ├── package.json │ │ ├── tempkey.jwk │ │ ├── tempkey.rsa │ │ ├── wwwroot │ │ │ └── libs │ │ │ │ ├── @fortawesome │ │ │ │ └── fontawesome-free │ │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ └── v4-shims.css │ │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ │ ├── abp │ │ │ │ ├── core │ │ │ │ │ ├── abp.css │ │ │ │ │ └── abp.js │ │ │ │ ├── jquery │ │ │ │ │ └── abp.jquery.js │ │ │ │ ├── luxon │ │ │ │ │ └── abp.luxon.js │ │ │ │ └── utils │ │ │ │ │ ├── abp-utils.umd.js │ │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ │ ├── bootstrap-datepicker │ │ │ │ ├── bootstrap-datepicker.css.map │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ ├── bootstrap-datepicker.min.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-DZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-US.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ │ ├── bootstrap-datepicker.mr.min.js │ │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ │ ├── bootstrap-daterangepicker │ │ │ │ ├── daterangepicker.css │ │ │ │ └── daterangepicker.js │ │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ │ │ ├── datatables.net-bs5 │ │ │ │ ├── css │ │ │ │ │ └── dataTables.bootstrap5.css │ │ │ │ └── js │ │ │ │ │ └── dataTables.bootstrap5.js │ │ │ │ ├── datatables.net │ │ │ │ └── js │ │ │ │ │ └── dataTables.min.js │ │ │ │ ├── jquery-form │ │ │ │ └── jquery.form.min.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── jquery.validate.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_ar.min.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_az.min.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bg.min.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_ca.min.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_cs.min.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_da.min.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_de.min.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_el.min.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es.min.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_et.min.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_eu.min.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fa.min.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fi.min.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_fr.min.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_ge.min.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_gl.min.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_he.min.js │ │ │ │ │ ├── messages_hi.js │ │ │ │ │ ├── messages_hi.min.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hr.min.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hu.min.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_id.min.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_is.min.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_it.min.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ja.min.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_ka.min.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_kk.min.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_ko.min.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lt.min.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_lv.min.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_mk.min.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_my.min.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_nl.min.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_no.min.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pl.min.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ro.min.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_ru.min.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_sd.min.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_si.min.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sk.min.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sl.min.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr.min.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_sv.min.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_th.min.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tj.min.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_tr.min.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_uk.min.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_ur.min.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_vi.min.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh.min.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_de.min.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_fi.min.js │ │ │ │ │ ├── methods_it.js │ │ │ │ │ ├── methods_it.min.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ ├── methods_nl.min.js │ │ │ │ │ ├── methods_pt.js │ │ │ │ │ └── methods_pt.min.js │ │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ │ ├── lodash │ │ │ │ └── lodash.min.js │ │ │ │ ├── luxon │ │ │ │ ├── luxon.js │ │ │ │ ├── luxon.js.map │ │ │ │ ├── luxon.min.js │ │ │ │ └── luxon.min.js.map │ │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ │ ├── mCSB_buttons.png │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ │ ├── moment │ │ │ │ ├── locale │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-ps.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── bn-bd.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bo.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cv.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dv.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-ie.js │ │ │ │ │ ├── en-il.js │ │ │ │ │ ├── en-in.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── en-sg.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-do.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fil.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fy.js │ │ │ │ │ ├── ga.js │ │ │ │ │ ├── gd.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gom-deva.js │ │ │ │ │ ├── gom-latn.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy-am.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it-ch.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── jv.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── kn.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku-kmr.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── ky.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lo.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── mi.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ml.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── mr.js │ │ │ │ │ ├── ms-my.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── mt.js │ │ │ │ │ ├── my.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl-be.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── oc-lnc.js │ │ │ │ │ ├── pa-in.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sd.js │ │ │ │ │ ├── se.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── ss.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── tet.js │ │ │ │ │ ├── tg.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ ├── tlh.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tzl.js │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ ├── tzm.js │ │ │ │ │ ├── ug-cn.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── ur.js │ │ │ │ │ ├── uz-latn.js │ │ │ │ │ ├── uz.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── x-pseudo.js │ │ │ │ │ ├── yo.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh-hk.js │ │ │ │ │ ├── zh-mo.js │ │ │ │ │ └── zh-tw.js │ │ │ │ └── moment.min.js │ │ │ │ ├── select2 │ │ │ │ ├── css │ │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ └── select2.min.js │ │ │ │ ├── sweetalert2 │ │ │ │ ├── sweetalert2.all.js │ │ │ │ ├── sweetalert2.all.min.js │ │ │ │ ├── sweetalert2.css │ │ │ │ ├── sweetalert2.esm.all.js │ │ │ │ ├── sweetalert2.esm.all.min.js │ │ │ │ ├── sweetalert2.esm.js │ │ │ │ ├── sweetalert2.esm.min.js │ │ │ │ ├── sweetalert2.js │ │ │ │ ├── sweetalert2.min.css │ │ │ │ └── sweetalert2.min.js │ │ │ │ └── timeago │ │ │ │ ├── jquery.timeago.js │ │ │ │ └── locales │ │ │ │ ├── README.md │ │ │ │ ├── jquery.timeago.af.js │ │ │ │ ├── jquery.timeago.am.js │ │ │ │ ├── jquery.timeago.ar.js │ │ │ │ ├── jquery.timeago.az-short.js │ │ │ │ ├── jquery.timeago.az.js │ │ │ │ ├── jquery.timeago.be.js │ │ │ │ ├── jquery.timeago.bg.js │ │ │ │ ├── jquery.timeago.bs.js │ │ │ │ ├── jquery.timeago.ca.js │ │ │ │ ├── jquery.timeago.cs.js │ │ │ │ ├── jquery.timeago.cy.js │ │ │ │ ├── jquery.timeago.da.js │ │ │ │ ├── jquery.timeago.de-short.js │ │ │ │ ├── jquery.timeago.de.js │ │ │ │ ├── jquery.timeago.dv.js │ │ │ │ ├── jquery.timeago.el.js │ │ │ │ ├── jquery.timeago.en-short.js │ │ │ │ ├── jquery.timeago.en.js │ │ │ │ ├── jquery.timeago.es-short.js │ │ │ │ ├── jquery.timeago.es.js │ │ │ │ ├── jquery.timeago.et.js │ │ │ │ ├── jquery.timeago.eu.js │ │ │ │ ├── jquery.timeago.fa-short.js │ │ │ │ ├── jquery.timeago.fa.js │ │ │ │ ├── jquery.timeago.fi.js │ │ │ │ ├── jquery.timeago.fr-short.js │ │ │ │ ├── jquery.timeago.fr.js │ │ │ │ ├── jquery.timeago.gl.js │ │ │ │ ├── jquery.timeago.he.js │ │ │ │ ├── jquery.timeago.hr.js │ │ │ │ ├── jquery.timeago.hu.js │ │ │ │ ├── jquery.timeago.hy.js │ │ │ │ ├── jquery.timeago.id.js │ │ │ │ ├── jquery.timeago.is.js │ │ │ │ ├── jquery.timeago.it-short.js │ │ │ │ ├── jquery.timeago.it.js │ │ │ │ ├── jquery.timeago.ja.js │ │ │ │ ├── jquery.timeago.jv.js │ │ │ │ ├── jquery.timeago.ko.js │ │ │ │ ├── jquery.timeago.ky.js │ │ │ │ ├── jquery.timeago.lt.js │ │ │ │ ├── jquery.timeago.lv.js │ │ │ │ ├── jquery.timeago.mk.js │ │ │ │ ├── jquery.timeago.nl.js │ │ │ │ ├── jquery.timeago.no.js │ │ │ │ ├── jquery.timeago.pl.js │ │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ │ ├── jquery.timeago.pt-br.js │ │ │ │ ├── jquery.timeago.pt-short.js │ │ │ │ ├── jquery.timeago.pt.js │ │ │ │ ├── jquery.timeago.ro.js │ │ │ │ ├── jquery.timeago.rs.js │ │ │ │ ├── jquery.timeago.ru.js │ │ │ │ ├── jquery.timeago.rw.js │ │ │ │ ├── jquery.timeago.si.js │ │ │ │ ├── jquery.timeago.sk.js │ │ │ │ ├── jquery.timeago.sl.js │ │ │ │ ├── jquery.timeago.sq.js │ │ │ │ ├── jquery.timeago.sr.js │ │ │ │ ├── jquery.timeago.sv.js │ │ │ │ ├── jquery.timeago.th.js │ │ │ │ ├── jquery.timeago.tr-short.js │ │ │ │ ├── jquery.timeago.tr.js │ │ │ │ ├── jquery.timeago.uk.js │ │ │ │ ├── jquery.timeago.ur.js │ │ │ │ ├── jquery.timeago.uz.js │ │ │ │ ├── jquery.timeago.vi.js │ │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ │ └── jquery.timeago.zh-TW.js │ │ └── yarn.lock │ ├── EasyAbp.BookingService.Web.Host │ │ ├── BookingServiceBrandingProvider.cs │ │ ├── BookingServiceWebAutoMapperProfile.cs │ │ ├── BookingServiceWebHostMenuContributor.cs │ │ ├── BookingServiceWebHostModule.cs │ │ ├── Controllers │ │ │ └── AccountController.cs │ │ ├── EasyAbp.BookingService.Web.Host.abppkg.json │ │ ├── EasyAbp.BookingService.Web.Host.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Pages │ │ │ ├── BookingServicePageModel.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Views │ │ │ └── _ViewImports.cshtml │ │ ├── abp.resourcemapping.js │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── appsettings.secrets.json │ │ ├── package.json │ │ ├── wwwroot │ │ │ └── libs │ │ │ │ ├── @fortawesome │ │ │ │ └── fontawesome-free │ │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ └── v4-shims.css │ │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ │ ├── abp │ │ │ │ ├── core │ │ │ │ │ ├── abp.css │ │ │ │ │ └── abp.js │ │ │ │ ├── jquery │ │ │ │ │ └── abp.jquery.js │ │ │ │ ├── luxon │ │ │ │ │ └── abp.luxon.js │ │ │ │ └── utils │ │ │ │ │ ├── abp-utils.umd.js │ │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ │ ├── bootstrap-datepicker │ │ │ │ ├── bootstrap-datepicker.css.map │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ ├── bootstrap-datepicker.min.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-DZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-US.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ │ ├── bootstrap-datepicker.mr.min.js │ │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ │ ├── bootstrap-daterangepicker │ │ │ │ ├── daterangepicker.css │ │ │ │ └── daterangepicker.js │ │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ │ │ ├── datatables.net-bs5 │ │ │ │ ├── css │ │ │ │ │ └── dataTables.bootstrap5.css │ │ │ │ └── js │ │ │ │ │ └── dataTables.bootstrap5.js │ │ │ │ ├── datatables.net │ │ │ │ └── js │ │ │ │ │ └── dataTables.min.js │ │ │ │ ├── jquery-form │ │ │ │ └── jquery.form.min.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── jquery.validate.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_ar.min.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_az.min.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bg.min.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_ca.min.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_cs.min.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_da.min.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_de.min.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_el.min.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es.min.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_et.min.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_eu.min.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fa.min.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fi.min.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_fr.min.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_ge.min.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_gl.min.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_he.min.js │ │ │ │ │ ├── messages_hi.js │ │ │ │ │ ├── messages_hi.min.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hr.min.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hu.min.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_id.min.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_is.min.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_it.min.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ja.min.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_ka.min.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_kk.min.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_ko.min.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lt.min.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_lv.min.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_mk.min.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_my.min.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_nl.min.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_no.min.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pl.min.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ro.min.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_ru.min.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_sd.min.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_si.min.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sk.min.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sl.min.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr.min.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_sv.min.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_th.min.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tj.min.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_tr.min.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_uk.min.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_ur.min.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_vi.min.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh.min.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_de.min.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_fi.min.js │ │ │ │ │ ├── methods_it.js │ │ │ │ │ ├── methods_it.min.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ ├── methods_nl.min.js │ │ │ │ │ ├── methods_pt.js │ │ │ │ │ └── methods_pt.min.js │ │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ │ ├── lodash │ │ │ │ └── lodash.min.js │ │ │ │ ├── luxon │ │ │ │ ├── luxon.js │ │ │ │ ├── luxon.js.map │ │ │ │ ├── luxon.min.js │ │ │ │ └── luxon.min.js.map │ │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ │ ├── mCSB_buttons.png │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ │ ├── moment │ │ │ │ ├── locale │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-ps.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── bn-bd.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bo.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cv.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dv.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-ie.js │ │ │ │ │ ├── en-il.js │ │ │ │ │ ├── en-in.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── en-sg.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-do.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fil.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fy.js │ │ │ │ │ ├── ga.js │ │ │ │ │ ├── gd.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gom-deva.js │ │ │ │ │ ├── gom-latn.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy-am.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it-ch.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── jv.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── kn.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku-kmr.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── ky.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lo.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── mi.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ml.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── mr.js │ │ │ │ │ ├── ms-my.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── mt.js │ │ │ │ │ ├── my.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl-be.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── oc-lnc.js │ │ │ │ │ ├── pa-in.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sd.js │ │ │ │ │ ├── se.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── ss.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── tet.js │ │ │ │ │ ├── tg.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ ├── tlh.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tzl.js │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ ├── tzm.js │ │ │ │ │ ├── ug-cn.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── ur.js │ │ │ │ │ ├── uz-latn.js │ │ │ │ │ ├── uz.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── x-pseudo.js │ │ │ │ │ ├── yo.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh-hk.js │ │ │ │ │ ├── zh-mo.js │ │ │ │ │ └── zh-tw.js │ │ │ │ └── moment.min.js │ │ │ │ ├── select2 │ │ │ │ ├── css │ │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ └── select2.min.js │ │ │ │ ├── sweetalert2 │ │ │ │ ├── sweetalert2.all.js │ │ │ │ ├── sweetalert2.all.min.js │ │ │ │ ├── sweetalert2.css │ │ │ │ ├── sweetalert2.esm.all.js │ │ │ │ ├── sweetalert2.esm.all.min.js │ │ │ │ ├── sweetalert2.esm.js │ │ │ │ ├── sweetalert2.esm.min.js │ │ │ │ ├── sweetalert2.js │ │ │ │ ├── sweetalert2.min.css │ │ │ │ └── sweetalert2.min.js │ │ │ │ └── timeago │ │ │ │ ├── jquery.timeago.js │ │ │ │ └── locales │ │ │ │ ├── README.md │ │ │ │ ├── jquery.timeago.af.js │ │ │ │ ├── jquery.timeago.am.js │ │ │ │ ├── jquery.timeago.ar.js │ │ │ │ ├── jquery.timeago.az-short.js │ │ │ │ ├── jquery.timeago.az.js │ │ │ │ ├── jquery.timeago.be.js │ │ │ │ ├── jquery.timeago.bg.js │ │ │ │ ├── jquery.timeago.bs.js │ │ │ │ ├── jquery.timeago.ca.js │ │ │ │ ├── jquery.timeago.cs.js │ │ │ │ ├── jquery.timeago.cy.js │ │ │ │ ├── jquery.timeago.da.js │ │ │ │ ├── jquery.timeago.de-short.js │ │ │ │ ├── jquery.timeago.de.js │ │ │ │ ├── jquery.timeago.dv.js │ │ │ │ ├── jquery.timeago.el.js │ │ │ │ ├── jquery.timeago.en-short.js │ │ │ │ ├── jquery.timeago.en.js │ │ │ │ ├── jquery.timeago.es-short.js │ │ │ │ ├── jquery.timeago.es.js │ │ │ │ ├── jquery.timeago.et.js │ │ │ │ ├── jquery.timeago.eu.js │ │ │ │ ├── jquery.timeago.fa-short.js │ │ │ │ ├── jquery.timeago.fa.js │ │ │ │ ├── jquery.timeago.fi.js │ │ │ │ ├── jquery.timeago.fr-short.js │ │ │ │ ├── jquery.timeago.fr.js │ │ │ │ ├── jquery.timeago.gl.js │ │ │ │ ├── jquery.timeago.he.js │ │ │ │ ├── jquery.timeago.hr.js │ │ │ │ ├── jquery.timeago.hu.js │ │ │ │ ├── jquery.timeago.hy.js │ │ │ │ ├── jquery.timeago.id.js │ │ │ │ ├── jquery.timeago.is.js │ │ │ │ ├── jquery.timeago.it-short.js │ │ │ │ ├── jquery.timeago.it.js │ │ │ │ ├── jquery.timeago.ja.js │ │ │ │ ├── jquery.timeago.jv.js │ │ │ │ ├── jquery.timeago.ko.js │ │ │ │ ├── jquery.timeago.ky.js │ │ │ │ ├── jquery.timeago.lt.js │ │ │ │ ├── jquery.timeago.lv.js │ │ │ │ ├── jquery.timeago.mk.js │ │ │ │ ├── jquery.timeago.nl.js │ │ │ │ ├── jquery.timeago.no.js │ │ │ │ ├── jquery.timeago.pl.js │ │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ │ ├── jquery.timeago.pt-br.js │ │ │ │ ├── jquery.timeago.pt-short.js │ │ │ │ ├── jquery.timeago.pt.js │ │ │ │ ├── jquery.timeago.ro.js │ │ │ │ ├── jquery.timeago.rs.js │ │ │ │ ├── jquery.timeago.ru.js │ │ │ │ ├── jquery.timeago.rw.js │ │ │ │ ├── jquery.timeago.si.js │ │ │ │ ├── jquery.timeago.sk.js │ │ │ │ ├── jquery.timeago.sl.js │ │ │ │ ├── jquery.timeago.sq.js │ │ │ │ ├── jquery.timeago.sr.js │ │ │ │ ├── jquery.timeago.sv.js │ │ │ │ ├── jquery.timeago.th.js │ │ │ │ ├── jquery.timeago.tr-short.js │ │ │ │ ├── jquery.timeago.tr.js │ │ │ │ ├── jquery.timeago.uk.js │ │ │ │ ├── jquery.timeago.ur.js │ │ │ │ ├── jquery.timeago.uz.js │ │ │ │ ├── jquery.timeago.vi.js │ │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ │ └── jquery.timeago.zh-TW.js │ │ └── yarn.lock │ └── EasyAbp.BookingService.Web.Unified │ │ ├── BookingServiceWebUnifiedModule.cs │ │ ├── EasyAbp.BookingService.Web.Unified.abppkg.json │ │ ├── EasyAbp.BookingService.Web.Unified.csproj │ │ ├── EntityFrameworkCore │ │ ├── UnifiedDbContext.cs │ │ └── UnifiedDbContextFactory.cs │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Migrations │ │ ├── 20211124020406_Initial.Designer.cs │ │ ├── 20211124020406_Initial.cs │ │ ├── 20220609050739_AddedEntities.Designer.cs │ │ ├── 20220609050739_AddedEntities.cs │ │ ├── 20220609053940_AddedVolume.Designer.cs │ │ ├── 20220609053940_AddedVolume.cs │ │ ├── 20220622050414_AddedAssetOccupancyCount.Designer.cs │ │ ├── 20220622050414_AddedAssetOccupancyCount.cs │ │ ├── 20220622050535_ConfiguredPeriod.Designer.cs │ │ ├── 20220622050535_ConfiguredPeriod.cs │ │ ├── 20230113183720_UpgradedToAbp7.Designer.cs │ │ ├── 20230113183720_UpgradedToAbp7.cs │ │ ├── 20230323082536_UpgradedToAbp_7_1.Designer.cs │ │ ├── 20230323082536_UpgradedToAbp_7_1.cs │ │ ├── 20230503130839_UpgradedToAbp_7_2.Designer.cs │ │ ├── 20230503130839_UpgradedToAbp_7_2.cs │ │ ├── 20231227130822_UpgradedToAbp_8_0.Designer.cs │ │ ├── 20231227130822_UpgradedToAbp_8_0.cs │ │ ├── 20240414204439_UpgradedToAbp_8_1.Designer.cs │ │ ├── 20240414204439_UpgradedToAbp_8_1.cs │ │ ├── 20240730112042_UpgradedToAbp_8_2.Designer.cs │ │ ├── 20240730112042_UpgradedToAbp_8_2.cs │ │ ├── 20241229122907_UpgradedToAbp_9_0.Designer.cs │ │ ├── 20241229122907_UpgradedToAbp_9_0.cs │ │ ├── 20250330145204_Upgraded_To_Abp_9_1.Designer.cs │ │ ├── 20250330145204_Upgraded_To_Abp_9_1.cs │ │ └── UnifiedDbContextModelSnapshot.cs │ │ ├── Pages │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── abp.resourcemapping.js │ │ ├── appsettings.json │ │ ├── appsettings.secrets.json │ │ ├── package.json │ │ ├── wwwroot │ │ └── libs │ │ │ ├── @fortawesome │ │ │ └── fontawesome-free │ │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ └── v4-shims.css │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ ├── abp │ │ │ ├── core │ │ │ │ ├── abp.css │ │ │ │ └── abp.js │ │ │ ├── jquery │ │ │ │ └── abp.jquery.js │ │ │ ├── luxon │ │ │ │ └── abp.luxon.js │ │ │ └── utils │ │ │ │ ├── abp-utils.umd.js │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ ├── bootstrap-datepicker │ │ │ ├── bootstrap-datepicker.css.map │ │ │ ├── bootstrap-datepicker.min.css │ │ │ ├── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.ar-DZ.min.js │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ ├── bootstrap-datepicker.en-US.min.js │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ ├── bootstrap-datepicker.mr.min.js │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ ├── bootstrap-daterangepicker │ │ │ ├── daterangepicker.css │ │ │ └── daterangepicker.js │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ │ ├── datatables.net-bs5 │ │ │ ├── css │ │ │ │ └── dataTables.bootstrap5.css │ │ │ └── js │ │ │ │ └── dataTables.bootstrap5.js │ │ │ ├── datatables.net │ │ │ └── js │ │ │ │ └── dataTables.min.js │ │ │ ├── jquery-form │ │ │ └── jquery.form.min.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ ├── jquery.validate.js │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_ar.min.js │ │ │ │ ├── messages_az.js │ │ │ │ ├── messages_az.min.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bg.min.js │ │ │ │ ├── messages_bn_BD.js │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_ca.min.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_cs.min.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_da.min.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_de.min.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_el.min.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es.min.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ ├── messages_es_PE.js │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_et.min.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_eu.min.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fa.min.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fi.min.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_fr.min.js │ │ │ │ ├── messages_ge.js │ │ │ │ ├── messages_ge.min.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_gl.min.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_he.min.js │ │ │ │ ├── messages_hi.js │ │ │ │ ├── messages_hi.min.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hr.min.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hu.min.js │ │ │ │ ├── messages_hy_AM.js │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_id.min.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_is.min.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_it.min.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ja.min.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_ka.min.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_kk.min.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_ko.min.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lt.min.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_lv.min.js │ │ │ │ ├── messages_mk.js │ │ │ │ ├── messages_mk.min.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_my.min.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_nl.min.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_no.min.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pl.min.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ro.min.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_ru.min.js │ │ │ │ ├── messages_sd.js │ │ │ │ ├── messages_sd.min.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_si.min.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sk.min.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sl.min.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr.min.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_sv.min.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_th.min.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tj.min.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_tr.min.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_uk.min.js │ │ │ │ ├── messages_ur.js │ │ │ │ ├── messages_ur.min.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_vi.min.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh.min.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_de.min.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_fi.min.js │ │ │ │ ├── methods_it.js │ │ │ │ ├── methods_it.min.js │ │ │ │ ├── methods_nl.js │ │ │ │ ├── methods_nl.min.js │ │ │ │ ├── methods_pt.js │ │ │ │ └── methods_pt.min.js │ │ │ ├── jquery │ │ │ └── jquery.js │ │ │ ├── lodash │ │ │ └── lodash.min.js │ │ │ ├── luxon │ │ │ ├── luxon.js │ │ │ ├── luxon.js.map │ │ │ ├── luxon.min.js │ │ │ └── luxon.min.js.map │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ ├── mCSB_buttons.png │ │ │ ├── package.json │ │ │ └── readme.md │ │ │ ├── moment │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-ps.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn-bd.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-in.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── en-sg.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fil.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-deva.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku-kmr.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── oc-lnc.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ ├── zh-mo.js │ │ │ │ └── zh-tw.js │ │ │ └── moment.min.js │ │ │ ├── select2 │ │ │ ├── css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── dsb.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hsb.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── ps.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.full.min.js │ │ │ │ └── select2.min.js │ │ │ ├── sweetalert2 │ │ │ ├── sweetalert2.all.js │ │ │ ├── sweetalert2.all.min.js │ │ │ ├── sweetalert2.css │ │ │ ├── sweetalert2.esm.all.js │ │ │ ├── sweetalert2.esm.all.min.js │ │ │ ├── sweetalert2.esm.js │ │ │ ├── sweetalert2.esm.min.js │ │ │ ├── sweetalert2.js │ │ │ ├── sweetalert2.min.css │ │ │ └── sweetalert2.min.js │ │ │ └── timeago │ │ │ ├── jquery.timeago.js │ │ │ └── locales │ │ │ ├── README.md │ │ │ ├── jquery.timeago.af.js │ │ │ ├── jquery.timeago.am.js │ │ │ ├── jquery.timeago.ar.js │ │ │ ├── jquery.timeago.az-short.js │ │ │ ├── jquery.timeago.az.js │ │ │ ├── jquery.timeago.be.js │ │ │ ├── jquery.timeago.bg.js │ │ │ ├── jquery.timeago.bs.js │ │ │ ├── jquery.timeago.ca.js │ │ │ ├── jquery.timeago.cs.js │ │ │ ├── jquery.timeago.cy.js │ │ │ ├── jquery.timeago.da.js │ │ │ ├── jquery.timeago.de-short.js │ │ │ ├── jquery.timeago.de.js │ │ │ ├── jquery.timeago.dv.js │ │ │ ├── jquery.timeago.el.js │ │ │ ├── jquery.timeago.en-short.js │ │ │ ├── jquery.timeago.en.js │ │ │ ├── jquery.timeago.es-short.js │ │ │ ├── jquery.timeago.es.js │ │ │ ├── jquery.timeago.et.js │ │ │ ├── jquery.timeago.eu.js │ │ │ ├── jquery.timeago.fa-short.js │ │ │ ├── jquery.timeago.fa.js │ │ │ ├── jquery.timeago.fi.js │ │ │ ├── jquery.timeago.fr-short.js │ │ │ ├── jquery.timeago.fr.js │ │ │ ├── jquery.timeago.gl.js │ │ │ ├── jquery.timeago.he.js │ │ │ ├── jquery.timeago.hr.js │ │ │ ├── jquery.timeago.hu.js │ │ │ ├── jquery.timeago.hy.js │ │ │ ├── jquery.timeago.id.js │ │ │ ├── jquery.timeago.is.js │ │ │ ├── jquery.timeago.it-short.js │ │ │ ├── jquery.timeago.it.js │ │ │ ├── jquery.timeago.ja.js │ │ │ ├── jquery.timeago.jv.js │ │ │ ├── jquery.timeago.ko.js │ │ │ ├── jquery.timeago.ky.js │ │ │ ├── jquery.timeago.lt.js │ │ │ ├── jquery.timeago.lv.js │ │ │ ├── jquery.timeago.mk.js │ │ │ ├── jquery.timeago.nl.js │ │ │ ├── jquery.timeago.no.js │ │ │ ├── jquery.timeago.pl.js │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ ├── jquery.timeago.pt-br.js │ │ │ ├── jquery.timeago.pt-short.js │ │ │ ├── jquery.timeago.pt.js │ │ │ ├── jquery.timeago.ro.js │ │ │ ├── jquery.timeago.rs.js │ │ │ ├── jquery.timeago.ru.js │ │ │ ├── jquery.timeago.rw.js │ │ │ ├── jquery.timeago.si.js │ │ │ ├── jquery.timeago.sk.js │ │ │ ├── jquery.timeago.sl.js │ │ │ ├── jquery.timeago.sq.js │ │ │ ├── jquery.timeago.sr.js │ │ │ ├── jquery.timeago.sv.js │ │ │ ├── jquery.timeago.th.js │ │ │ ├── jquery.timeago.tr-short.js │ │ │ ├── jquery.timeago.tr.js │ │ │ ├── jquery.timeago.uk.js │ │ │ ├── jquery.timeago.ur.js │ │ │ ├── jquery.timeago.uz.js │ │ │ ├── jquery.timeago.vi.js │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ └── jquery.timeago.zh-TW.js │ │ └── yarn.lock ├── src │ ├── EasyAbp.BookingService.Application.Contracts │ │ ├── EasyAbp.BookingService.Application.Contracts.abppkg.json │ │ ├── EasyAbp.BookingService.Application.Contracts.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ └── BookingServiceApplicationContractsModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Application │ │ ├── EasyAbp.BookingService.Application.abppkg.json │ │ ├── EasyAbp.BookingService.Application.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ ├── BookingServiceAppService.cs │ │ │ │ ├── BookingServiceApplicationAutoMapperProfile.cs │ │ │ │ └── BookingServiceApplicationModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Blazor.Server │ │ ├── BookingServiceBlazorServerModule.cs │ │ ├── EasyAbp.BookingService.Blazor.Server.abppkg.json │ │ ├── EasyAbp.BookingService.Blazor.Server.csproj │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Blazor.WebAssembly │ │ ├── BookingServiceBlazorWebAssemblyModule.cs │ │ ├── EasyAbp.BookingService.Blazor.WebAssembly.abppkg.json │ │ ├── EasyAbp.BookingService.Blazor.WebAssembly.csproj │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Blazor │ │ ├── BookingServiceBlazorAutoMapperProfile.cs │ │ ├── BookingServiceBlazorModule.cs │ │ ├── EasyAbp.BookingService.Blazor.abppkg.json │ │ ├── EasyAbp.BookingService.Blazor.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Menus │ │ │ ├── BookingServiceMenuContributor.cs │ │ │ └── BookingServiceMenus.cs │ │ └── _Imports.razor │ ├── EasyAbp.BookingService.Domain.Shared │ │ ├── EasyAbp.BookingService.Domain.Shared.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ ├── BookingServiceDomainSharedModule.cs │ │ │ │ ├── BookingServiceUrls.cs │ │ │ │ └── EasyAbp.BookingService.Domain.Shared.abppkg.json │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Domain │ │ ├── EasyAbp.BookingService.Domain.abppkg.json │ │ ├── EasyAbp.BookingService.Domain.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ ├── AssetOccupancyCounts │ │ │ │ ├── AssetOccupancyCount.cs │ │ │ │ ├── AssetOccupancyCountKey.cs │ │ │ │ └── IAssetOccupancyCountRepository.cs │ │ │ │ ├── AssetOccupancyProviders │ │ │ │ └── DefaultAssetOccupancyProvider.cs │ │ │ │ ├── BookingServiceDomainModule.cs │ │ │ │ └── Settings │ │ │ │ ├── BookingServiceSettingDefinitionProvider.cs │ │ │ │ └── BookingServiceSettings.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.EntityFrameworkCore │ │ ├── EasyAbp.BookingService.EntityFrameworkCore.abppkg.json │ │ ├── EasyAbp.BookingService.EntityFrameworkCore.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ ├── AssetOccupancyCounts │ │ │ │ ├── AssetOccupancyCountEfCoreQueryableExtensions.cs │ │ │ │ └── AssetOccupancyCountRepository.cs │ │ │ │ └── EntityFrameworkCore │ │ │ │ ├── BookingServiceDbContext.cs │ │ │ │ ├── BookingServiceDbContextModelCreatingExtensions.cs │ │ │ │ ├── BookingServiceEntityFrameworkCoreModule.cs │ │ │ │ └── IBookingServiceDbContext.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.HttpApi.Client │ │ ├── EasyAbp.BookingService.HttpApi.Client.abppkg.json │ │ ├── EasyAbp.BookingService.HttpApi.Client.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ └── BookingServiceHttpApiClientModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.HttpApi │ │ ├── EasyAbp.BookingService.HttpApi.abppkg.json │ │ ├── EasyAbp.BookingService.HttpApi.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ └── BookingServiceHttpApiModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Installer │ │ ├── EasyAbp.BookingService.Installer.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ └── BookingServiceInstallerModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.MongoDB │ │ ├── EasyAbp.BookingService.MongoDB.abppkg.json │ │ ├── EasyAbp.BookingService.MongoDB.csproj │ │ ├── EasyAbp │ │ │ └── BookingService │ │ │ │ └── MongoDB │ │ │ │ ├── BookingServiceMongoDbContext.cs │ │ │ │ ├── BookingServiceMongoDbContextExtensions.cs │ │ │ │ ├── BookingServiceMongoDbModule.cs │ │ │ │ └── IBookingServiceMongoDbContext.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ └── EasyAbp.BookingService.Web │ │ ├── BookingServiceWebAutoMapperProfile.cs │ │ ├── BookingServiceWebModule.cs │ │ ├── EasyAbp.BookingService.Web.abppkg.json │ │ ├── EasyAbp.BookingService.Web.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Menus │ │ ├── BookingServiceMenuContributor.cs │ │ └── BookingServiceMenus.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ └── yarn.lock └── test │ ├── EasyAbp.BookingService.Application.Tests │ ├── BookingServiceApplicationTestBase.cs │ ├── BookingServiceApplicationTestModule.cs │ ├── EasyAbp.BookingService.Application.Tests.abppkg.json │ ├── EasyAbp.BookingService.Application.Tests.csproj │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.Domain.Tests │ ├── BookingServiceDomainTestBase.cs │ ├── BookingServiceDomainTestModule.cs │ ├── EasyAbp.BookingService.Domain.Tests.abppkg.json │ ├── EasyAbp.BookingService.Domain.Tests.csproj │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.EntityFrameworkCore.Tests │ ├── EasyAbp.BookingService.EntityFrameworkCore.Tests.abppkg.json │ ├── EasyAbp.BookingService.EntityFrameworkCore.Tests.csproj │ ├── EntityFrameworkCore │ │ ├── AssetOccupancyCounts │ │ │ └── AssetCategoryRepositoryTests.cs │ │ ├── BookingServiceEntityFrameworkCoreTestBase.cs │ │ └── BookingServiceEntityFrameworkCoreTestModule.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd │ ├── EasyAbp.BookingService.HttpApi.Client.ConsoleTestApp │ ├── BookingServiceConsoleApiClientModule.cs │ ├── ClientDemoService.cs │ ├── ConsoleTestAppHostedService.cs │ ├── EasyAbp.BookingService.HttpApi.Client.ConsoleTestApp.abppkg.json │ ├── EasyAbp.BookingService.HttpApi.Client.ConsoleTestApp.csproj │ ├── Program.cs │ ├── appsettings.json │ └── appsettings.secrets.json │ ├── EasyAbp.BookingService.MongoDB.Tests │ ├── EasyAbp.BookingService.MongoDB.Tests.abppkg.json │ ├── EasyAbp.BookingService.MongoDB.Tests.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ └── MongoDB │ │ ├── BookingServiceMongoDbTestBase.cs │ │ ├── BookingServiceMongoDbTestModule.cs │ │ ├── MongoDbFixture.cs │ │ └── MongoTestCollection.cs │ └── EasyAbp.BookingService.TestBase │ ├── BookingServiceDataSeedContributor.cs │ ├── BookingServiceTestBase.cs │ ├── BookingServiceTestBaseModule.cs │ ├── EasyAbp.BookingService.TestBase.abppkg.json │ ├── EasyAbp.BookingService.TestBase.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ └── Security │ └── FakeCurrentPrincipalAccessor.cs └── Common ├── EasyAbp.BookingService.Common.abpmdl.json ├── EasyAbp.BookingService.Common.abpsln.json ├── EasyAbp.BookingService.Common.sln ├── EasyAbp.BookingService.Common.sln.DotSettings ├── NuGet.Config ├── host └── EasyAbp.BookingService.Common.Host.Shared │ ├── EasyAbp.BookingService.Common.Host.Shared.abppkg.json │ ├── EasyAbp.BookingService.Common.Host.Shared.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ └── MultiTenancy │ └── MultiTenancyConsts.cs ├── src ├── EasyAbp.BookingService.Common.Application.Contracts │ ├── EasyAbp.BookingService.Common.Application.Contracts.abppkg.json │ ├── EasyAbp.BookingService.Common.Application.Contracts.csproj │ ├── EasyAbp │ │ └── BookingService │ │ │ ├── AssetCategories │ │ │ ├── Dtos │ │ │ │ ├── AssetCategoryDto.cs │ │ │ │ ├── CreateAssetCategoryDto.cs │ │ │ │ ├── GetAssetCategoriesRequestDto.cs │ │ │ │ └── UpdateAssetCategoryDto.cs │ │ │ └── IAssetCategoryAppService.cs │ │ │ ├── AssetOccupancies │ │ │ ├── Dtos │ │ │ │ ├── AssetOccupancyDto.cs │ │ │ │ ├── BookingPeriodDto.cs │ │ │ │ ├── BulkCreateAssetOccupancyDto.cs │ │ │ │ ├── CreateAssetOccupancyByCategoryIdDto.cs │ │ │ │ ├── CreateAssetOccupancyDto.cs │ │ │ │ ├── GetAssetOccupanciesRequestDto.cs │ │ │ │ ├── SearchBookingPeriodsInputDto.cs │ │ │ │ ├── SearchBookingPeriodsResultDto.cs │ │ │ │ └── SearchCategoryBookingPeriodsInputDto.cs │ │ │ └── IAssetOccupancyAppService.cs │ │ │ ├── AssetPeriodSchemes │ │ │ ├── Dtos │ │ │ │ ├── AssetPeriodSchemeDto.cs │ │ │ │ ├── CreateAssetPeriodSchemeDto.cs │ │ │ │ ├── GetAssetPeriodSchemesRequestDto.cs │ │ │ │ └── UpdateAssetPeriodSchemeDto.cs │ │ │ └── IAssetPeriodSchemeAppService.cs │ │ │ ├── AssetSchedules │ │ │ ├── Dtos │ │ │ │ ├── AssetScheduleDto.cs │ │ │ │ ├── CreateAssetScheduleDto.cs │ │ │ │ ├── GetAssetSchedulesRequestDto.cs │ │ │ │ └── UpdateAssetScheduleDto.cs │ │ │ └── IAssetScheduleAppService.cs │ │ │ ├── Assets │ │ │ ├── Dtos │ │ │ │ ├── AssetDto.cs │ │ │ │ ├── CreateUpdateAssetDto.cs │ │ │ │ └── GetAssetsRequestDto.cs │ │ │ └── IAssetAppService.cs │ │ │ ├── BookingServiceCommonApplicationContractsModule.cs │ │ │ ├── BookingServiceRemoteServiceConsts.cs │ │ │ ├── Dtos │ │ │ └── TimeInAdvanceDto.cs │ │ │ ├── PeriodSchemes │ │ │ ├── Dtos │ │ │ │ ├── CreatePeriodSchemeDto.cs │ │ │ │ ├── CreateUpdatePeriodDto.cs │ │ │ │ ├── GetPeriodSchemesRequestDto.cs │ │ │ │ ├── PeriodDto.cs │ │ │ │ ├── PeriodSchemeDto.cs │ │ │ │ └── UpdatePeriodSchemeDto.cs │ │ │ └── IPeriodSchemeAppService.cs │ │ │ └── Permissions │ │ │ ├── BookingServicePermissionDefinitionProvider.cs │ │ │ └── BookingServicePermissions.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.BookingService.Common.Application │ ├── EasyAbp.BookingService.Common.Application.abppkg.json │ ├── EasyAbp.BookingService.Common.Application.csproj │ ├── EasyAbp │ │ └── BookingService │ │ │ ├── AssetCategories │ │ │ └── AssetCategoryAppService.cs │ │ │ ├── AssetOccupancies │ │ │ └── AssetOccupancyAppService.cs │ │ │ ├── AssetPeriodSchemes │ │ │ └── AssetPeriodSchemeAppService.cs │ │ │ ├── AssetSchedules │ │ │ └── AssetScheduleAppService.cs │ │ │ ├── Assets │ │ │ └── AssetAppService.cs │ │ │ ├── BookingServiceCommonAppService.cs │ │ │ ├── BookingServiceCommonApplicationAutoMapperProfile.cs │ │ │ ├── BookingServiceCommonApplicationModule.cs │ │ │ └── PeriodSchemes │ │ │ └── PeriodSchemeAppService.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.BookingService.Common.Blazor.Server │ ├── BookingServiceCommonBlazorServerModule.cs │ ├── EasyAbp.BookingService.Common.Blazor.Server.abppkg.json │ ├── EasyAbp.BookingService.Common.Blazor.Server.csproj │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.BookingService.Common.Blazor.WebAssembly │ ├── BookingServiceCommonBlazorWebAssemblyModule.cs │ ├── EasyAbp.BookingService.Common.Blazor.WebAssembly.abppkg.json │ ├── EasyAbp.BookingService.Common.Blazor.WebAssembly.csproj │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.BookingService.Common.Blazor │ ├── BookingServiceCommonBlazorAutoMapperProfile.cs │ ├── BookingServiceCommonBlazorModule.cs │ ├── EasyAbp.BookingService.Common.Blazor.abppkg.json │ ├── EasyAbp.BookingService.Common.Blazor.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Menus │ │ ├── BookingServiceCommonMenuContributor.cs │ │ └── BookingServiceCommonMenus.cs │ ├── Pages │ │ └── BookingService │ │ │ └── Index.razor │ └── _Imports.razor ├── EasyAbp.BookingService.Common.Domain.Shared │ ├── EasyAbp.BookingService.Common.Domain.Shared.csproj │ ├── EasyAbp │ │ └── BookingService │ │ │ ├── AssetOccupancyProviders │ │ │ ├── AssetOccupancyInfoModel.cs │ │ │ ├── AssetOccupancyResultEto.cs │ │ │ ├── BulkAssetOccupancyResultEto.cs │ │ │ ├── BulkOccupyAssetEto.cs │ │ │ ├── IOccupyingBaseInfo.cs │ │ │ ├── IOccupyingTimeInfo.cs │ │ │ ├── OccupyAssetByCategoryEto.cs │ │ │ ├── OccupyAssetByCategoryInfoModel.cs │ │ │ ├── OccupyAssetEto.cs │ │ │ ├── OccupyAssetInfoModel.cs │ │ │ ├── OccupyingBaseInfoExtensions.cs │ │ │ ├── PeriodInfoExtensions.cs │ │ │ └── ProviderAssetOccupancyModel.cs │ │ │ ├── AssetPeriodSchemes │ │ │ └── AssetPeriodSchemeKey.cs │ │ │ ├── AssetSchedules │ │ │ └── PeriodUsable.cs │ │ │ ├── BookingServiceCommonDomainSharedModule.cs │ │ │ ├── BookingServiceCommonUrls.cs │ │ │ ├── BookingServiceErrorCodes.cs │ │ │ ├── EasyAbp.BookingService.Common.Domain.Shared.abppkg.json │ │ │ ├── IPeriodInfo.cs │ │ │ ├── ITimeInAdvance.cs │ │ │ └── Localization │ │ │ ├── BookingServiceResource.cs │ │ │ ├── en.json │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.BookingService.Common.Domain │ ├── EasyAbp.BookingService.Common.Domain.abppkg.json │ ├── EasyAbp.BookingService.Common.Domain.csproj │ ├── EasyAbp │ │ └── BookingService │ │ │ ├── AssetCategories │ │ │ ├── AssetCategory.cs │ │ │ ├── AssetCategoryManager.cs │ │ │ └── IAssetCategoryRepository.cs │ │ │ ├── AssetDefinitions │ │ │ ├── AssetDefinition.cs │ │ │ └── AssetDefinitionNotExistsException.cs │ │ │ ├── AssetOccupancies │ │ │ ├── AssetOccupancy.cs │ │ │ ├── AssetOccupancyEventsHandler.cs │ │ │ ├── IAssetOccupancyRepository.cs │ │ │ └── UnexpectedNegativeVolumeException.cs │ │ │ ├── AssetOccupancyProviders │ │ │ ├── AssetOccupancyProviderBase.cs │ │ │ ├── CanBulkOccupyResult.cs │ │ │ ├── CanOccupyResult.cs │ │ │ ├── DefaultAssetInCategorySelector.cs │ │ │ ├── DisabledAssetOrCategoryException.cs │ │ │ ├── FailToObtainAssetOccupancyLockException.cs │ │ │ ├── IAssetInCategorySelector.cs │ │ │ ├── IAssetOccupancyProvider.cs │ │ │ ├── ICanOccupyResult.cs │ │ │ ├── InsufficientAssetVolumeException.cs │ │ │ ├── InvalidOccupyingVolumeException.cs │ │ │ ├── PeriodOccupancyModel.cs │ │ │ └── ProviderOccupyingInfoModel.cs │ │ │ ├── AssetPeriodSchemes │ │ │ ├── AssetPeriodScheme.cs │ │ │ └── IAssetPeriodSchemeRepository.cs │ │ │ ├── AssetSchedules │ │ │ ├── AssetSchedule.cs │ │ │ ├── AssetScheduleCacheInvalidator.cs │ │ │ ├── AssetScheduleCacheItem.cs │ │ │ ├── AssetScheduleExistsException.cs │ │ │ ├── AssetScheduleManager.cs │ │ │ ├── AssetScheduleStore.cs │ │ │ ├── IAssetScheduleRepository.cs │ │ │ └── IAssetScheduleStore.cs │ │ │ ├── Assets │ │ │ ├── Asset.cs │ │ │ ├── AssetDefinitionNameNotMatchException.cs │ │ │ ├── AssetDisabledException.cs │ │ │ ├── AssetManager.cs │ │ │ ├── AssetNotFoundException.cs │ │ │ └── IAssetRepository.cs │ │ │ ├── BookingServiceCommonDomainModule.cs │ │ │ ├── BookingServiceDbProperties.cs │ │ │ ├── BookingServiceOptions.cs │ │ │ ├── PeriodSchemes │ │ │ ├── CannotDeletePeriodInUseException.cs │ │ │ ├── CannotDeletePeriodSchemeInUseException.cs │ │ │ ├── CannotUpdatePeriodInUseException.cs │ │ │ ├── DefaultPeriodSchemeAlreadyExistsException.cs │ │ │ ├── DefaultPeriodSchemeCacheItem.cs │ │ │ ├── DefaultPeriodSchemeNotFoundException.cs │ │ │ ├── DefaultPeriodSchemeProvider.cs │ │ │ ├── DefaultPeriodSchemeProviderCacheCleaner.cs │ │ │ ├── IDefaultPeriodSchemeProvider.cs │ │ │ ├── IPeriodSchemeRepository.cs │ │ │ ├── Period.cs │ │ │ ├── PeriodScheme.cs │ │ │ └── PeriodSchemeManager.cs │ │ │ └── TimeInAdvance.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.BookingService.Common.EntityFrameworkCore │ ├── EasyAbp.BookingService.Common.EntityFrameworkCore.abppkg.json │ ├── EasyAbp.BookingService.Common.EntityFrameworkCore.csproj │ ├── EasyAbp │ │ └── BookingService │ │ │ ├── AssetCategories │ │ │ ├── AssetCategoryEfCoreQuerableExtensions.cs │ │ │ └── AssetCategoryRepository.cs │ │ │ ├── AssetOccupancies │ │ │ ├── AssetOccupancyEfCoreQuerableExtensions.cs │ │ │ └── AssetOccupancyRepository.cs │ │ │ ├── AssetPeriodSchemes │ │ │ ├── AssetPeriodSchemeEfCoreQuerableExtensions.cs │ │ │ └── AssetPeriodSchemeRepository.cs │ │ │ ├── AssetSchedules │ │ │ ├── AssetScheduleEfCoreQuerableExtensions.cs │ │ │ └── AssetScheduleRepository.cs │ │ │ ├── Assets │ │ │ ├── AssetEfCoreQuerableExtensions.cs │ │ │ └── AssetRepository.cs │ │ │ ├── EntityFrameworkCore │ │ │ ├── BookingServiceCommonDbContext.cs │ │ │ ├── BookingServiceCommonDbContextModelCreatingExtensions.cs │ │ │ ├── BookingServiceCommonEntityFrameworkCoreModule.cs │ │ │ └── IBookingServiceCommonDbContext.cs │ │ │ └── PeriodSchemes │ │ │ ├── PeriodSchemeEfCoreQuerableExtensions.cs │ │ │ └── PeriodSchemeRepository.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.BookingService.Common.HttpApi.Client │ ├── EasyAbp.BookingService.Common.HttpApi.Client.abppkg.json │ ├── EasyAbp.BookingService.Common.HttpApi.Client.csproj │ ├── EasyAbp │ │ └── BookingService │ │ │ └── BookingServiceCommonHttpApiClientModule.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.BookingService.Common.HttpApi │ ├── EasyAbp.BookingService.Common.HttpApi.abppkg.json │ ├── EasyAbp.BookingService.Common.HttpApi.csproj │ ├── EasyAbp │ │ └── BookingService │ │ │ ├── AssetCategories │ │ │ └── AssetCategoryController.cs │ │ │ ├── AssetOccupancies │ │ │ └── AssetOccupancyController.cs │ │ │ ├── AssetPeriodSchemes │ │ │ └── AssetPeriodSchemeController.cs │ │ │ ├── AssetSchedules │ │ │ └── AssetScheduleController.cs │ │ │ ├── Assets │ │ │ └── AssetController.cs │ │ │ ├── BookingServiceCommonHttpApiModule.cs │ │ │ ├── BookingServiceController.cs │ │ │ └── PeriodSchemes │ │ │ └── PeriodSchemeController.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.BookingService.Common.Installer │ ├── EasyAbp.BookingService.Common.Installer.csproj │ ├── EasyAbp │ │ └── BookingService │ │ │ └── BookingServiceCommonInstallerModule.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd ├── EasyAbp.BookingService.Common.MongoDB │ ├── EasyAbp.BookingService.Common.MongoDB.abppkg.json │ ├── EasyAbp.BookingService.Common.MongoDB.csproj │ ├── EasyAbp │ │ └── BookingService │ │ │ └── MongoDB │ │ │ ├── BookingServiceCommonMongoDbContext.cs │ │ │ ├── BookingServiceCommonMongoDbContextExtensions.cs │ │ │ ├── BookingServiceCommonMongoDbModule.cs │ │ │ └── IBookingServiceCommonMongoDbContext.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd └── EasyAbp.BookingService.Common.Web │ ├── BookingServiceCommonWebAutoMapperProfile.cs │ ├── BookingServiceCommonWebModule.cs │ ├── EasyAbp.BookingService.Common.Web.abppkg.json │ ├── EasyAbp.BookingService.Common.Web.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Pages │ ├── BookingService │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── BookingServicePageModel.cs │ └── _ViewImports.cshtml │ ├── Properties │ └── launchSettings.json │ └── yarn.lock └── test ├── EasyAbp.BookingService.Common.Application.Tests ├── AssetCategories │ └── AssetCategoryAppServiceTests.cs ├── AssetOccupancies │ └── AssetOccupancyAppServiceTests.cs ├── AssetPeriodSchemes │ └── AssetPeriodSchemeAppServiceTests.cs ├── AssetSchedules │ └── AssetScheduleAppServiceTests.cs ├── Assets │ └── AssetAppServiceTests.cs ├── BookingServiceCommonApplicationTestBase.cs ├── BookingServiceCommonApplicationTestModule.cs ├── EasyAbp.BookingService.Common.Application.Tests.abppkg.json ├── EasyAbp.BookingService.Common.Application.Tests.csproj ├── FodyWeavers.xml ├── FodyWeavers.xsd └── PeriodSchemes │ └── PeriodSchemeAppServiceTests.cs ├── EasyAbp.BookingService.Common.Domain.Tests ├── AssetCategories │ └── AssetCategoryManagerTests.cs ├── AssetOccupancies │ └── AssetOccupancyEventsHandlerTests.cs ├── AssetPeriodSchemes │ └── AssetPeriodSchemeDomainTests.cs ├── AssetSchedules │ └── AssetScheduleManagerTests.cs ├── Assets │ └── AssetManagerTests.cs ├── BookingServiceCommonDomainTestBase.cs ├── BookingServiceCommonDomainTestModule.cs ├── EasyAbp.BookingService.Common.Domain.Tests.abppkg.json ├── EasyAbp.BookingService.Common.Domain.Tests.csproj ├── FodyWeavers.xml ├── FodyWeavers.xsd └── PeriodSchemes │ ├── DefaultPeriodSchemeProviderCacheCleanerTests.cs │ ├── DefaultPeriodSchemeProviderTests.cs │ └── PeriodSchemeManagerTests.cs ├── EasyAbp.BookingService.Common.EntityFrameworkCore.Tests ├── EasyAbp.BookingService.Common.EntityFrameworkCore.Tests.abppkg.json ├── EasyAbp.BookingService.Common.EntityFrameworkCore.Tests.csproj ├── EntityFrameworkCore │ ├── AssetCategories │ │ └── AssetCategoryRepositoryTests.cs │ ├── AssetOccupancies │ │ └── AssetOccupancyRepositoryTests.cs │ ├── AssetPeriodSchemes │ │ └── AssetPeriodSchemeRepositoryTests.cs │ ├── AssetSchedules │ │ └── AssetScheduleRepositoryTests.cs │ ├── Assets │ │ └── AssetRepositoryTests.cs │ ├── BookingServiceCommonEntityFrameworkCoreTestBase.cs │ ├── BookingServiceCommonEntityFrameworkCoreTestModule.cs │ └── PeriodSchemes │ │ └── PeriodSchemeRepositoryTests.cs ├── FodyWeavers.xml └── FodyWeavers.xsd ├── EasyAbp.BookingService.Common.MongoDB.Tests ├── EasyAbp.BookingService.Common.MongoDB.Tests.abppkg.json ├── EasyAbp.BookingService.Common.MongoDB.Tests.csproj ├── FodyWeavers.xml ├── FodyWeavers.xsd └── MongoDB │ ├── BookingServiceCommonMongoDbTestBase.cs │ ├── BookingServiceCommonMongoDbTestModule.cs │ ├── MongoDbFixture.cs │ └── MongoTestCollection.cs └── EasyAbp.BookingService.Common.TestBase ├── BookingServiceCommonDataSeedContributor.cs ├── BookingServiceCommonTestBaseModule.cs ├── BookingServiceTestBase.cs ├── EasyAbp.BookingService.Common.TestBase.abppkg.json ├── EasyAbp.BookingService.Common.TestBase.csproj ├── FodyWeavers.xml ├── FodyWeavers.xsd └── Security └── FakeCurrentPrincipalAccessor.cs /.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/.gitignore -------------------------------------------------------------------------------- /BookingService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/BookingService.sln -------------------------------------------------------------------------------- /BookingService.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/BookingService.sln.DotSettings -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/LICENSE -------------------------------------------------------------------------------- /common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/common.props -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/docs/README.md -------------------------------------------------------------------------------- /modules/BookingService.Orleans/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/.prettierrc -------------------------------------------------------------------------------- /modules/BookingService.Orleans/EasyAbp.BookingService.Orleans.abpmdl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/EasyAbp.BookingService.Orleans.abpmdl.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/EasyAbp.BookingService.Orleans.abpsln.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/EasyAbp.BookingService.Orleans.abpsln.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/EasyAbp.BookingService.Orleans.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/EasyAbp.BookingService.Orleans.sln -------------------------------------------------------------------------------- /modules/BookingService.Orleans/EasyAbp.BookingService.Orleans.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/EasyAbp.BookingService.Orleans.sln.DotSettings -------------------------------------------------------------------------------- /modules/BookingService.Orleans/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/NuGet.Config -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/.editorconfig -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/.eslintrc.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/.gitignore -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/.prettierrc -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/.vscode/extensions.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/README.md -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/angular.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/package.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/.eslintrc.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/README.md -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/config/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/config/ng-package.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/config/src/enums/index.ts: -------------------------------------------------------------------------------- 1 | export * from './route-names'; 2 | -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/config/src/enums/route-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/config/src/enums/route-names.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/config/src/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './route.provider'; 2 | -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/config/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/config/src/public-api.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/karma.conf.js -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/ng-package.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/package.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/src/public-api.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/src/test.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/tsconfig.lib.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/booking-service/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/booking-service/tsconfig.spec.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/.browserslistrc -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/.eslintrc.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/karma.conf.js -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/app/app.component.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/app/app.module.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/app/home/home.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/app/home/home.component.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/app/home/home.module.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/app/route.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/app/route.provider.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/environments/environment.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/favicon.ico -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/index.html -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/main.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/polyfills.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/styles.scss -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/src/test.ts -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/tsconfig.app.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/tsconfig.prod.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/projects/dev-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/projects/dev-app/tsconfig.spec.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/tsconfig.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/tsconfig.prod.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/angular/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/angular/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService.Orleans/database/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/database/Dockerfile -------------------------------------------------------------------------------- /modules/BookingService.Orleans/database/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/database/entrypoint.sh -------------------------------------------------------------------------------- /modules/BookingService.Orleans/docker-compose.migrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/docker-compose.migrations.yml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/docker-compose.override.yml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/docker-compose.yml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/EasyAbp.BookingService.Orleans.Blazor.Host.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "host.blazor-wasm" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/Program.cs -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/_Imports.razor -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/wwwroot/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/wwwroot/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Host/wwwroot/main.css -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Server.Host/EasyAbp.BookingService.Orleans.Blazor.Server.Host.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "host.blazor-server" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Server.Host/Pages/Index.razor.css: -------------------------------------------------------------------------------- 1 | /* Write here your styles for the Index page */ -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Server.Host/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Server.Host/wwwroot/global-styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Server.Host/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Blazor.Server.Host/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Host.Shared/EasyAbp.BookingService.Orleans.Host.Shared.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Host.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Host.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Host.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Host.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/Dockerfile -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/EasyAbp.BookingService.Orleans.HttpApi.Host.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "host.http-api" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/Program.cs -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.HttpApi.Host/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/Dockerfile -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/EasyAbp.BookingService.Orleans.IdentityServer.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/Program.cs -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/package.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/tempkey.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/tempkey.jwk -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/tempkey.rsa -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.IdentityServer/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/EasyAbp.BookingService.Orleans.Web.Host.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "host.mvc" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/Pages/Index.cshtml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/Program.cs -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/appsettings.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/package.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Host/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/EasyAbp.BookingService.Orleans.Web.Unified.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/Program.cs -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/appsettings.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/package.json -------------------------------------------------------------------------------- /modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/host/EasyAbp.BookingService.Orleans.Web.Unified/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Application.Contracts/EasyAbp.BookingService.Orleans.Application.Contracts.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.application-contracts" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Application/EasyAbp.BookingService.Orleans.Application.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.application" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Application/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Application/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Application/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Application/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor.Server/EasyAbp.BookingService.Orleans.Blazor.Server.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.blazor-server" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor.Server/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor.Server/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor.Server/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor.Server/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor.WebAssembly/EasyAbp.BookingService.Orleans.Blazor.WebAssembly.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.blazor-wasm" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor/EasyAbp.BookingService.Orleans.Blazor.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.blazor" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Blazor/_Imports.razor -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Domain.Shared/EasyAbp/BookingService/EasyAbp.BookingService.Orleans.Domain.Shared.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.domain-shared" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Domain.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Domain.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Domain.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Domain.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Domain/EasyAbp.BookingService.Orleans.Domain.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.domain" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Domain/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Domain/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Domain/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Domain/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.EntityFrameworkCore/EasyAbp.BookingService.Orleans.EntityFrameworkCore.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.ef" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.HttpApi.Client/EasyAbp.BookingService.Orleans.HttpApi.Client.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.http-api-client" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.HttpApi/EasyAbp.BookingService.Orleans.HttpApi.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.http-api" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.HttpApi/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.HttpApi/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.HttpApi/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.HttpApi/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Installer/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Installer/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Installer/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Installer/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.MongoDB/EasyAbp.BookingService.Orleans.MongoDB.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.mongodb" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.MongoDB/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.MongoDB/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.MongoDB/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.MongoDB/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Web/EasyAbp.BookingService.Orleans.Web.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.mvc" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Web/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Web/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Web/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Web/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/src/EasyAbp.BookingService.Orleans.Web/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.Application.Tests/EasyAbp.BookingService.Orleans.Application.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.Domain.Tests/EasyAbp.BookingService.Orleans.Domain.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.Domain.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.Domain.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.Domain.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.Domain.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.EntityFrameworkCore.Tests/EasyAbp.BookingService.Orleans.EntityFrameworkCore.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.HttpApi.Client.ConsoleTestApp/EasyAbp.BookingService.Orleans.HttpApi.Client.ConsoleTestApp.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.HttpApi.Client.ConsoleTestApp/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.MongoDB.Tests/EasyAbp.BookingService.Orleans.MongoDB.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.TestBase/EasyAbp.BookingService.Orleans.TestBase.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.TestBase/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.TestBase/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.TestBase/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService.Orleans/test/EasyAbp.BookingService.Orleans.TestBase/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/.prettierrc -------------------------------------------------------------------------------- /modules/BookingService/EasyAbp.BookingService.abpmdl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/EasyAbp.BookingService.abpmdl.json -------------------------------------------------------------------------------- /modules/BookingService/EasyAbp.BookingService.abpsln.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/EasyAbp.BookingService.abpsln.json -------------------------------------------------------------------------------- /modules/BookingService/EasyAbp.BookingService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/EasyAbp.BookingService.sln -------------------------------------------------------------------------------- /modules/BookingService/EasyAbp.BookingService.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/EasyAbp.BookingService.sln.DotSettings -------------------------------------------------------------------------------- /modules/BookingService/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/NuGet.Config -------------------------------------------------------------------------------- /modules/BookingService/angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/.editorconfig -------------------------------------------------------------------------------- /modules/BookingService/angular/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/.eslintrc.json -------------------------------------------------------------------------------- /modules/BookingService/angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/.gitignore -------------------------------------------------------------------------------- /modules/BookingService/angular/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/.prettierrc -------------------------------------------------------------------------------- /modules/BookingService/angular/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/.vscode/extensions.json -------------------------------------------------------------------------------- /modules/BookingService/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/README.md -------------------------------------------------------------------------------- /modules/BookingService/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/angular.json -------------------------------------------------------------------------------- /modules/BookingService/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/package.json -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/.eslintrc.json -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/README.md -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/config/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/config/ng-package.json -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/config/src/enums/index.ts: -------------------------------------------------------------------------------- 1 | export * from './route-names'; 2 | -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/config/src/enums/route-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/config/src/enums/route-names.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/config/src/providers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './route.provider'; 2 | -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/config/src/providers/route.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/config/src/providers/route.provider.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/config/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/config/src/public-api.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/karma.conf.js -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/ng-package.json -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/package.json -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/src/lib/booking-service.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/src/lib/booking-service.module.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/src/lib/booking-service.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/src/lib/booking-service.service.spec.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/src/public-api.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/src/test.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/tsconfig.lib.json -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/booking-service/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/booking-service/tsconfig.spec.json -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/.browserslistrc -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/.eslintrc.json -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/karma.conf.js -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/app/app.component.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/app/app.module.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/app/home/home.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/app/home/home.component.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/app/home/home.module.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/app/route.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/app/route.provider.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/environments/environment.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/favicon.ico -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/index.html -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/main.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/polyfills.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/styles.scss -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/src/test.ts -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/tsconfig.app.json -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/tsconfig.prod.json -------------------------------------------------------------------------------- /modules/BookingService/angular/projects/dev-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/projects/dev-app/tsconfig.spec.json -------------------------------------------------------------------------------- /modules/BookingService/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/tsconfig.json -------------------------------------------------------------------------------- /modules/BookingService/angular/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/tsconfig.prod.json -------------------------------------------------------------------------------- /modules/BookingService/angular/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/angular/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService/database/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/database/Dockerfile -------------------------------------------------------------------------------- /modules/BookingService/database/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/database/entrypoint.sh -------------------------------------------------------------------------------- /modules/BookingService/docker-compose.migrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/docker-compose.migrations.yml -------------------------------------------------------------------------------- /modules/BookingService/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/docker-compose.override.yml -------------------------------------------------------------------------------- /modules/BookingService/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/docker-compose.yml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/EasyAbp.BookingService.Blazor.Host.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "host.blazor-wasm" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/Pages/Index.razor -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/Program.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/Properties/launchSettings.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/_Imports.razor -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/appsettings.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/favicon.ico -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/global.css -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/global.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/index.html -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Host/wwwroot/main.css -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/EasyAbp.BookingService.Blazor.Server.Host.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "host.blazor-server" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/Pages/Index.razor -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/Pages/Index.razor.cs: -------------------------------------------------------------------------------- 1 | namespace EasyAbp.BookingService.Blazor.Server.Host.Pages; 2 | 3 | public partial class Index 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/Pages/Index.razor.css: -------------------------------------------------------------------------------- 1 | /* Write here your styles for the Index page */ -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/Pages/_Host.cshtml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/Program.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/_Imports.razor -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/appsettings.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/package.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/tempkey.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/tempkey.jwk -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/wwwroot/favicon.ico -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/wwwroot/global-styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | } -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Blazor.Server.Host/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Host.Shared/EasyAbp.BookingService.Host.Shared.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Host.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Host.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Host.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Host.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/Controllers/HomeController.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/Dockerfile -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/EasyAbp.BookingService.HttpApi.Host.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "host.http-api" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/Program.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/Properties/launchSettings.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/appsettings.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.HttpApi.Host/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/Dockerfile -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/EasyAbp.BookingService.IdentityServer.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/Pages/Index.cshtml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/Program.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/abp.resourcemapping.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/appsettings.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/package.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/tempkey.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/tempkey.jwk -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/tempkey.rsa -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/wwwroot/libs/abp/core/abp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/wwwroot/libs/abp/core/abp.css -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/wwwroot/libs/abp/core/abp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/wwwroot/libs/abp/core/abp.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/wwwroot/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/wwwroot/libs/jquery/jquery.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/wwwroot/libs/luxon/luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/wwwroot/libs/luxon/luxon.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.IdentityServer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.IdentityServer/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/BookingServiceBrandingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/BookingServiceBrandingProvider.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/BookingServiceWebHostModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/BookingServiceWebHostModule.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/Controllers/AccountController.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/EasyAbp.BookingService.Web.Host.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "host.mvc" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/Pages/BookingServicePageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/Pages/BookingServicePageModel.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/Pages/Index.cshtml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/Program.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/Properties/launchSettings.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/abp.resourcemapping.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/appsettings.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/package.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/abp/core/abp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/abp/core/abp.css -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/abp/core/abp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/abp/core/abp.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/abp/luxon/abp.luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/abp/luxon/abp.luxon.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/jquery/jquery.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/lodash/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/lodash/lodash.min.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/luxon/luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/luxon/luxon.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/luxon/luxon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/luxon/luxon.js.map -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/luxon/luxon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/luxon/luxon.min.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/luxon/luxon.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/luxon/luxon.min.js.map -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/af.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-dz.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-kw.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-ly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-ly.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-ma.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-ps.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-sa.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar-tn.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ar.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/az.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/be.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bg.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bm.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bn-bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bn-bd.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bn.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bo.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/br.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/bs.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ca.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/cs.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/cv.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/cy.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/da.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/de-at.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/de-ch.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/de.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/dv.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/el.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-au.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-ca.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-gb.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-ie.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-il.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-in.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-nz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-nz.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-sg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/en-sg.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/eo.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/es-do.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/es-do.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/es-mx.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/es-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/es-us.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/es.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/et.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/eu.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fa.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fi.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fil.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fo.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fr-ca.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fr-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fr-ch.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fr.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/fy.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ga.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/gd.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/gl.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/gu.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/he.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/hi.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/hr.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/hu.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/hy-am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/hy-am.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/id.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/is.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/it-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/it-ch.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/it.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ja.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/jv.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ka.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/kk.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/km.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/kn.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ko.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ku.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ky.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/lb.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/lo.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/lt.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/lv.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/me.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/mi.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/mk.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ml.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/mn.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/mr.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ms-my.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ms.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/mt.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/my.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/nb.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ne.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/nl-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/nl-be.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/nl.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/nn.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/pa-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/pa-in.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/pl.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/pt-br.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/pt.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ro.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ru.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sd.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/se.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/si.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sk.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sl.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sq.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sr.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ss.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sv.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/sw.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ta.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/te.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tet.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tg.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/th.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tk.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tl-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tl-ph.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tlh.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tr.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tzl.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/tzm.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ug-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ug-cn.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/uk.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/ur.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/uz.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/vi.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/yo.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/zh-cn.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/zh-hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/zh-hk.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/zh-mo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/zh-mo.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/locale/zh-tw.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/moment/moment.min.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/af.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/az.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/bn.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/da.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/de.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/dsb.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/el.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/en.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/es.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/et.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/fr.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/gl.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/he.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/hi.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/hr.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/hsb.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/hu.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/hy.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/id.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/is.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/it.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ja.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ka.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/km.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ko.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/lt.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/lv.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/mk.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ms.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/nb.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ne.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/nl.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/pl.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ps.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/pt.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ro.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/wwwroot/libs/select2/js/i18n/ru.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Host/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Host/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/EasyAbp.BookingService.Web.Unified.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/Pages/Index.cshtml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/Program.cs -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/abp.resourcemapping.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/appsettings.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/package.json -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/wwwroot/libs/abp/core/abp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/wwwroot/libs/abp/core/abp.css -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/wwwroot/libs/abp/core/abp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/wwwroot/libs/abp/core/abp.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/wwwroot/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/wwwroot/libs/jquery/jquery.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/wwwroot/libs/luxon/luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/wwwroot/libs/luxon/luxon.js -------------------------------------------------------------------------------- /modules/BookingService/host/EasyAbp.BookingService.Web.Unified/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/host/EasyAbp.BookingService.Web.Unified/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Application.Contracts/EasyAbp.BookingService.Application.Contracts.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.application-contracts" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Application.Contracts/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Application.Contracts/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Application.Contracts/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Application.Contracts/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Application/EasyAbp.BookingService.Application.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.application" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Application/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Application/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Application/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Application/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor.Server/EasyAbp.BookingService.Blazor.Server.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.blazor-server" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor.Server/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Blazor.Server/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor.Server/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Blazor.Server/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor.WebAssembly/EasyAbp.BookingService.Blazor.WebAssembly.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.blazor-wasm" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor.WebAssembly/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Blazor.WebAssembly/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor.WebAssembly/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Blazor.WebAssembly/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor/BookingServiceBlazorModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Blazor/BookingServiceBlazorModule.cs -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor/EasyAbp.BookingService.Blazor.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.blazor" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Blazor/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Blazor/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor/Menus/BookingServiceMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Blazor/Menus/BookingServiceMenus.cs -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Blazor/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Blazor/_Imports.razor -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Domain.Shared/EasyAbp/BookingService/EasyAbp.BookingService.Domain.Shared.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.domain-shared" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Domain.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Domain.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Domain.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Domain.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Domain/EasyAbp.BookingService.Domain.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.domain" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Domain/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Domain/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Domain/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Domain/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.EntityFrameworkCore/EasyAbp.BookingService.EntityFrameworkCore.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.ef" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.EntityFrameworkCore/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.EntityFrameworkCore/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.EntityFrameworkCore/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.EntityFrameworkCore/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.HttpApi.Client/EasyAbp.BookingService.HttpApi.Client.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.http-api-client" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.HttpApi.Client/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.HttpApi.Client/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.HttpApi.Client/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.HttpApi.Client/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.HttpApi/EasyAbp.BookingService.HttpApi.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.http-api" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.HttpApi/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.HttpApi/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.HttpApi/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.HttpApi/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Installer/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Installer/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Installer/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Installer/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.MongoDB/EasyAbp.BookingService.MongoDB.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.mongodb" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.MongoDB/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.MongoDB/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.MongoDB/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.MongoDB/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Web/BookingServiceWebAutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Web/BookingServiceWebAutoMapperProfile.cs -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Web/BookingServiceWebModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Web/BookingServiceWebModule.cs -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Web/EasyAbp.BookingService.Web.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.mvc" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Web/EasyAbp.BookingService.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Web/EasyAbp.BookingService.Web.csproj -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Web/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Web/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Web/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Web/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Web/Menus/BookingServiceMenuContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Web/Menus/BookingServiceMenuContributor.cs -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Web/Menus/BookingServiceMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Web/Menus/BookingServiceMenus.cs -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /modules/BookingService/src/EasyAbp.BookingService.Web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/src/EasyAbp.BookingService.Web/yarn.lock -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.Application.Tests/EasyAbp.BookingService.Application.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.Application.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.Application.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.Application.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.Application.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.Domain.Tests/EasyAbp.BookingService.Domain.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.Domain.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.Domain.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.Domain.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.Domain.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.EntityFrameworkCore.Tests/EasyAbp.BookingService.EntityFrameworkCore.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.EntityFrameworkCore.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.EntityFrameworkCore.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.EntityFrameworkCore.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.EntityFrameworkCore.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.HttpApi.Client.ConsoleTestApp/EasyAbp.BookingService.HttpApi.Client.ConsoleTestApp.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.HttpApi.Client.ConsoleTestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.HttpApi.Client.ConsoleTestApp/Program.cs -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.HttpApi.Client.ConsoleTestApp/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.MongoDB.Tests/EasyAbp.BookingService.MongoDB.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.MongoDB.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.MongoDB.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.MongoDB.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.MongoDB.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.MongoDB.Tests/MongoDB/MongoDbFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.MongoDB.Tests/MongoDB/MongoDbFixture.cs -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.TestBase/BookingServiceTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.TestBase/BookingServiceTestBase.cs -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.TestBase/BookingServiceTestBaseModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.TestBase/BookingServiceTestBaseModule.cs -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.TestBase/EasyAbp.BookingService.TestBase.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.TestBase/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.TestBase/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/BookingService/test/EasyAbp.BookingService.TestBase/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/BookingService/test/EasyAbp.BookingService.TestBase/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/EasyAbp.BookingService.Common.abpmdl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/EasyAbp.BookingService.Common.abpmdl.json -------------------------------------------------------------------------------- /modules/Common/EasyAbp.BookingService.Common.abpsln.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/EasyAbp.BookingService.Common.abpsln.json -------------------------------------------------------------------------------- /modules/Common/EasyAbp.BookingService.Common.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/EasyAbp.BookingService.Common.sln -------------------------------------------------------------------------------- /modules/Common/EasyAbp.BookingService.Common.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/EasyAbp.BookingService.Common.sln.DotSettings -------------------------------------------------------------------------------- /modules/Common/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/NuGet.Config -------------------------------------------------------------------------------- /modules/Common/host/EasyAbp.BookingService.Common.Host.Shared/EasyAbp.BookingService.Common.Host.Shared.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/Common/host/EasyAbp.BookingService.Common.Host.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/host/EasyAbp.BookingService.Common.Host.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/host/EasyAbp.BookingService.Common.Host.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/host/EasyAbp.BookingService.Common.Host.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Application.Contracts/EasyAbp.BookingService.Common.Application.Contracts.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.application-contracts" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Application.Contracts/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Application.Contracts/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Application.Contracts/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Application.Contracts/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Application/EasyAbp.BookingService.Common.Application.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.application" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Application/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Application/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Application/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Application/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor.Server/EasyAbp.BookingService.Common.Blazor.Server.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.blazor-server" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor.Server/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Blazor.Server/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor.Server/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Blazor.Server/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor.WebAssembly/EasyAbp.BookingService.Common.Blazor.WebAssembly.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.blazor-wasm" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor.WebAssembly/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Blazor.WebAssembly/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor.WebAssembly/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Blazor.WebAssembly/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor/BookingServiceCommonBlazorModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Blazor/BookingServiceCommonBlazorModule.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor/EasyAbp.BookingService.Common.Blazor.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.blazor" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Blazor/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Blazor/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor/Menus/BookingServiceCommonMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Blazor/Menus/BookingServiceCommonMenus.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor/Pages/BookingService/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Blazor/Pages/BookingService/Index.razor -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Blazor/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Blazor/_Imports.razor -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Domain.Shared/EasyAbp/BookingService/EasyAbp.BookingService.Common.Domain.Shared.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.domain-shared" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Domain.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Domain.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Domain.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Domain.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Domain/EasyAbp.BookingService.Common.Domain.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.domain" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Domain/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Domain/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Domain/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Domain/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.EntityFrameworkCore/EasyAbp.BookingService.Common.EntityFrameworkCore.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.ef" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.EntityFrameworkCore/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.EntityFrameworkCore/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.EntityFrameworkCore/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.EntityFrameworkCore/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.HttpApi.Client/EasyAbp.BookingService.Common.HttpApi.Client.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.http-api-client" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.HttpApi.Client/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.HttpApi.Client/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.HttpApi.Client/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.HttpApi.Client/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.HttpApi/EasyAbp.BookingService.Common.HttpApi.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.http-api" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.HttpApi/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.HttpApi/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.HttpApi/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.HttpApi/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Installer/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Installer/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Installer/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Installer/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.MongoDB/EasyAbp.BookingService.Common.MongoDB.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.mongodb" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.MongoDB/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.MongoDB/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.MongoDB/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.MongoDB/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Web/BookingServiceCommonWebModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Web/BookingServiceCommonWebModule.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Web/EasyAbp.BookingService.Common.Web.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.mvc" 3 | } -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Web/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Web/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Web/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Web/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Web/Pages/BookingService/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Web/Pages/BookingService/Index.cshtml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Web/Pages/BookingService/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Web/Pages/BookingService/Index.cshtml.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Web/Pages/BookingServicePageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Web/Pages/BookingServicePageModel.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Web/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Web/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.BookingService.Common.Web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/src/EasyAbp.BookingService.Common.Web/yarn.lock -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.Application.Tests/EasyAbp.BookingService.Common.Application.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.Application.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.Application.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.Application.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.Application.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.Domain.Tests/Assets/AssetManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.Domain.Tests/Assets/AssetManagerTests.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.Domain.Tests/EasyAbp.BookingService.Common.Domain.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.Domain.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.Domain.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.Domain.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.Domain.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.EntityFrameworkCore.Tests/EasyAbp.BookingService.Common.EntityFrameworkCore.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.EntityFrameworkCore.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.EntityFrameworkCore.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.EntityFrameworkCore.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.EntityFrameworkCore.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.MongoDB.Tests/EasyAbp.BookingService.Common.MongoDB.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.MongoDB.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.MongoDB.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.MongoDB.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.MongoDB.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.MongoDB.Tests/MongoDB/MongoDbFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.MongoDB.Tests/MongoDB/MongoDbFixture.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.TestBase/BookingServiceTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.TestBase/BookingServiceTestBase.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.TestBase/EasyAbp.BookingService.Common.TestBase.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.TestBase/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.TestBase/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.BookingService.Common.TestBase/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/BookingService/HEAD/modules/Common/test/EasyAbp.BookingService.Common.TestBase/FodyWeavers.xsd --------------------------------------------------------------------------------