├── .gitignore ├── LICENSE ├── README.md ├── azure-pipelines-1.yml ├── screenshots ├── admin-dashboard.jpg ├── book-ticket-page-1.jpg ├── book-ticket-page-2.jpg ├── book-ticket-page-3.jpg ├── contacts-page-1.jpg ├── contacts-page-2.jpg ├── faq-page.jpg ├── footer.jpg ├── genres-page.jpg ├── home-page-1.jpg ├── home-page-2.jpg ├── home-page-3.jpg ├── login-register-dialog-1.jpg ├── login-register-dialog-2.jpg ├── movies-add-comment.jpg ├── movies-page-single.jpg ├── movies-page.jpg ├── movies-sub-comments.jpg ├── news-page-1.jpg ├── news-page-2.jpg ├── news-single-page.jpg ├── privacy-page.jpg └── schedule-page.jpg ├── src ├── .gitignore ├── CinemaWorld.Common │ ├── Attributes │ │ ├── AllowedExtensionsAttribute.cs │ │ ├── GoogleReCaptchaValidationAttribute.cs │ │ └── MaxFileSizeAttribute.cs │ ├── CinemaWorld.Common.csproj │ ├── GlobalConstants.cs │ └── ReCaptchaSiteVerifyResponse.cs ├── CinemaWorld.Models.Common │ ├── CinemaWorld.Models.Common.csproj │ └── ModelValidation.cs ├── CinemaWorld.Models.InputModels │ ├── AdministratorInputModels │ │ ├── About │ │ │ └── FaqCreateInputModel.cs │ │ ├── Cinemas │ │ │ └── CinemaCreateInputModel.cs │ │ ├── Contacts │ │ │ └── SendContactInputModel.cs │ │ ├── Countries │ │ │ └── CountryCreateInputModel.cs │ │ ├── Directors │ │ │ └── DirectorCreateInputModel.cs │ │ ├── Genres │ │ │ └── GenreCreateInputModel.cs │ │ ├── Halls │ │ │ └── HallCreateInputModel.cs │ │ ├── MovieProjections │ │ │ └── MovieProjectionCreateInputModel.cs │ │ ├── Movies │ │ │ └── MovieCreateInputModel.cs │ │ ├── News │ │ │ └── NewsCreateInputModel.cs │ │ ├── Privacy │ │ │ └── PrivacyCreateInputModel.cs │ │ └── Seats │ │ │ └── SeatCreateInputModel.cs │ ├── CinemaWorld.Models.InputModels.csproj │ ├── Comments │ │ └── CreateCommentInputModel.cs │ ├── MovieComments │ │ └── CreateMovieCommentInputModel.cs │ ├── NewsComments │ │ └── CreateNewsCommentInputModel.cs │ ├── Ratings │ │ └── RatingInputModel.cs │ └── Users │ │ ├── AjaxLoginInputModel.cs │ │ ├── AjaxRegisterInputModel.cs │ │ └── ExternalLoginInputModel.cs ├── CinemaWorld.Models.ViewModels │ ├── About │ │ ├── FaqDetailsViewModel.cs │ │ └── FaqEditViewModel.cs │ ├── AlphabeticalPagingViewModel.cs │ ├── BookingErrorViewModel.cs │ ├── CinemaWorld.Models.ViewModels.csproj │ ├── Cinemas │ │ ├── CinemaDetailsViewModel.cs │ │ └── CinemaEditViewModel.cs │ ├── Comments │ │ └── PostCommentViewModel.cs │ ├── Contacts │ │ ├── ContactFormEntryViewModel.cs │ │ └── UserEmailViewModel.cs │ ├── Countries │ │ ├── CountryDetailsViewModel.cs │ │ └── CountryEditViewModel.cs │ ├── Directors │ │ ├── DirectorDetailsViewModel.cs │ │ ├── DirectorEditViewModel.cs │ │ └── DirectorViewModel.cs │ ├── ErrorViewModel.cs │ ├── Genres │ │ ├── GenreDetailsViewModel.cs │ │ ├── GenreEditViewModel.cs │ │ └── NavbarGenreViewModel.cs │ ├── Halls │ │ ├── HallDetailsViewModel.cs │ │ └── HallEditViewModel.cs │ ├── HttpErrorViewModel.cs │ ├── MovieComments │ │ └── PostMovieCommentViewModel.cs │ ├── MovieProjections │ │ ├── MovieProjectionDetailsViewModel.cs │ │ ├── MovieProjectionEditViewModel.cs │ │ └── MovieProjectionViewModel.cs │ ├── Movies │ │ ├── AllMoviesListingViewModel.cs │ │ ├── DetailsListingViewModel.cs │ │ ├── MostPopularDetailsViewModel.cs │ │ ├── MovieCountryViewModel.cs │ │ ├── MovieDeleteViewModel.cs │ │ ├── MovieDetailsViewModel.cs │ │ ├── MovieEditViewModel.cs │ │ ├── MovieGenreViewModel.cs │ │ ├── MovieViewModel.cs │ │ ├── MoviesHomePageListingViewModel.cs │ │ ├── MoviesListingViewModel.cs │ │ ├── RecentlyAddedMovieDetailsViewModel.cs │ │ ├── SliderMovieDetailsViewModel.cs │ │ ├── TopMovieDetailsViewModel.cs │ │ └── TopRatingMovieDetailsViewModel.cs │ ├── News │ │ ├── AllNewsListingViewModel.cs │ │ ├── NewsDeleteViewModel.cs │ │ ├── NewsDetailsViewModel.cs │ │ ├── NewsEditViewModel.cs │ │ ├── NewsIndexViewModel.cs │ │ ├── NewsSingleDetailsViewModel.cs │ │ ├── TopNewsViewModel.cs │ │ └── UpdatedNewsDetailsViewModel.cs │ ├── NewsComments │ │ └── PostNewsCommentViewModel.cs │ ├── PaginatedList.cs │ ├── Privacy │ │ ├── PrivacyDetailsViewModel.cs │ │ └── PrivacyEditViewModel.cs │ ├── Ratings │ │ └── StarRatingResponseModel.cs │ ├── Schedule │ │ └── ScheduleDetailsViewModel.cs │ ├── Seats │ │ ├── SeatDetailsViewModel.cs │ │ └── SeatEditViewModel.cs │ ├── Settings │ │ ├── SettingViewModel.cs │ │ └── SettingsListViewModel.cs │ └── Tickets │ │ ├── TicketDetailsViewModel.cs │ │ └── TicketInputModel.cs ├── CinemaWorld.sln ├── Data │ ├── CinemaWorld.Data.Common │ │ ├── CinemaWorld.Data.Common.csproj │ │ ├── DataValidation.cs │ │ ├── IDbQueryRunner.cs │ │ ├── Models │ │ │ ├── BaseDeletableModel.cs │ │ │ ├── BaseModel.cs │ │ │ ├── IAuditInfo.cs │ │ │ └── IDeletableEntity.cs │ │ └── Repositories │ │ │ ├── IDeletableEntityRepository.cs │ │ │ └── IRepository.cs │ ├── CinemaWorld.Data.Models │ │ ├── Actor.cs │ │ ├── AdminContactFromEntry.cs │ │ ├── ApplicationRole.cs │ │ ├── ApplicationUser.cs │ │ ├── Author.cs │ │ ├── Cinema.cs │ │ ├── CinemaWorld.Data.Models.csproj │ │ ├── CinemaWorldUser.cs │ │ ├── Comment.cs │ │ ├── ContactFormEntry.cs │ │ ├── Country.cs │ │ ├── Director.cs │ │ ├── Enumerations │ │ │ ├── CinemaCategory.cs │ │ │ ├── Gender.cs │ │ │ ├── HallCategory.cs │ │ │ ├── PaymentMethod.cs │ │ │ ├── Resolution.cs │ │ │ ├── SeatCategory.cs │ │ │ ├── TicketType.cs │ │ │ └── TimeSlot.cs │ │ ├── FaqEntry.cs │ │ ├── Genre.cs │ │ ├── Hall.cs │ │ ├── Movie.cs │ │ ├── MovieActor.cs │ │ ├── MovieComment.cs │ │ ├── MovieCountry.cs │ │ ├── MovieDirector.cs │ │ ├── MovieGenre.cs │ │ ├── MovieNews.cs │ │ ├── MovieProjection.cs │ │ ├── MovieReview.cs │ │ ├── News.cs │ │ ├── NewsComment.cs │ │ ├── Privacy.cs │ │ ├── Promotion.cs │ │ ├── Review.cs │ │ ├── ReviewAuthor.cs │ │ ├── SaleTransaction.cs │ │ ├── Seat.cs │ │ ├── Seller.cs │ │ ├── Setting.cs │ │ ├── ShoppingCart.cs │ │ ├── StarRating.cs │ │ ├── Ticket.cs │ │ └── TicketOrder.cs │ └── CinemaWorld.Data │ │ ├── CinemaWorld.Data.csproj │ │ ├── CinemaWorldDbContext.cs │ │ ├── DbQueryRunner.cs │ │ ├── DesignTimeDbContextFactory.cs │ │ ├── EfExpressionHelper.cs │ │ ├── EntityIndexesConfiguration.cs │ │ ├── IdentityOptionsProvider.cs │ │ ├── Migrations │ │ ├── 20200425112002_InitialMigration.Designer.cs │ │ ├── 20200425112002_InitialMigration.cs │ │ └── CinemaWorldDbContextModelSnapshot.cs │ │ ├── Repositories │ │ ├── EfDeletableEntityRepository.cs │ │ └── EfRepository.cs │ │ ├── Seeding │ │ ├── ApplicationDbContextSeeder.cs │ │ ├── DirectorsSeeder.cs │ │ ├── ISeeder.cs │ │ ├── RolesSeeder.cs │ │ ├── SeatsSeeder.cs │ │ └── SettingsSeeder.cs │ │ └── appsettings.json ├── Rules.ruleset ├── Services │ ├── CinemaWorld.Services.Data │ │ ├── AboutService.cs │ │ ├── CinemaWorld.Services.Data.csproj │ │ ├── CinemasService.cs │ │ ├── CloudinaryService.cs │ │ ├── Common │ │ │ ├── ExceptionMessages.cs │ │ │ ├── OperationalMessages.cs │ │ │ └── Suffixes.cs │ │ ├── ContactsService.cs │ │ ├── Contracts │ │ │ ├── IAboutService.cs │ │ │ ├── IBaseDataService.cs │ │ │ ├── ICinemasService.cs │ │ │ ├── ICloudinaryService.cs │ │ │ ├── IContactsService.cs │ │ │ ├── ICountriesService.cs │ │ │ ├── IDirectorsService.cs │ │ │ ├── IGenresService.cs │ │ │ ├── IHallsService.cs │ │ │ ├── IMovieCommentsService.cs │ │ │ ├── IMovieProjectionsService.cs │ │ │ ├── IMoviesService.cs │ │ │ ├── INewsCommentsService.cs │ │ │ ├── INewsService.cs │ │ │ ├── IPrivacyService.cs │ │ │ ├── IRatingsService.cs │ │ │ ├── ISeatsService.cs │ │ │ ├── ISettingsService.cs │ │ │ └── ITicketsService.cs │ │ ├── CountriesService.cs │ │ ├── DirectorsService.cs │ │ ├── GenresService.cs │ │ ├── HallsService.cs │ │ ├── MovieCommentsService.cs │ │ ├── MovieProjectionsService.cs │ │ ├── MoviesService.cs │ │ ├── NewsCommentsService.cs │ │ ├── NewsService.cs │ │ ├── PrivacyService.cs │ │ ├── RatingsService.cs │ │ ├── SeatsService.cs │ │ ├── SettingsService.cs │ │ └── TicketsService.cs │ ├── CinemaWorld.Services.Mapping │ │ ├── AutoMapperConfig.cs │ │ ├── CinemaWorld.Services.Mapping.csproj │ │ ├── IHaveCustomMappings.cs │ │ ├── IMapFrom.cs │ │ ├── IMapTo.cs │ │ └── QueryableMappingExtensions.cs │ ├── CinemaWorld.Services.Messaging │ │ ├── CinemaWorld.Services.Messaging.csproj │ │ ├── EmailAttachment.cs │ │ ├── IEmailSender.cs │ │ ├── NullMessageSender.cs │ │ └── SendGridEmailSender.cs │ └── CinemaWorld.Services │ │ └── CinemaWorld.Services.csproj ├── Settings.StyleCop ├── Tests │ ├── CinemaWorld.Services.Data.Tests │ │ ├── AboutServiceTests.cs │ │ ├── CinemaWorld.Services.Data.Tests.csproj │ │ ├── CinemasServiceTests.cs │ │ ├── Configuration.cs │ │ ├── ContactsServiceTests.cs │ │ ├── CountriesServiceTests.cs │ │ ├── DirectorsServiceTests.cs │ │ ├── GenresServiceTests.cs │ │ ├── HallsServiceTests.cs │ │ ├── MovieCommentsServiceTests.cs │ │ ├── MovieProjectionsServiceTests.cs │ │ ├── MoviesServiceTests.cs │ │ ├── NewsCommentsServiceTests.cs │ │ ├── NewsServiceTests.cs │ │ ├── PrivacyServiceTests.cs │ │ ├── RatingsServiceTests.cs │ │ ├── SeatsServiceTests.cs │ │ ├── SettingsServiceTests.cs │ │ ├── Test.jpg │ │ └── TicketsServiceTests.cs │ ├── CinemaWorld.Web.Tests │ │ ├── CinemaWorld.Web.Tests.csproj │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SeleniumServerFactory.cs │ │ ├── SeleniumTests.cs │ │ └── WebTests.cs │ └── Sandbox │ │ ├── Program.cs │ │ ├── Sandbox.csproj │ │ ├── SandboxOptions.cs │ │ └── appsettings.json ├── Web │ ├── CinemaWorld.Web.Infrastructure │ │ ├── AjaxObject.cs │ │ └── CinemaWorld.Web.Infrastructure.csproj │ └── CinemaWorld.Web │ │ ├── .config │ │ └── dotnet-tools.json │ │ ├── Areas │ │ ├── Administration │ │ │ ├── Controllers │ │ │ │ ├── AboutController.cs │ │ │ │ ├── AdministrationController.cs │ │ │ │ ├── CinemasController.cs │ │ │ │ ├── ContactsController.cs │ │ │ │ ├── CountriesController.cs │ │ │ │ ├── DirectorsController.cs │ │ │ │ ├── GenresController.cs │ │ │ │ ├── HallsController.cs │ │ │ │ ├── MovieProjectionsController.cs │ │ │ │ ├── MoviesController.cs │ │ │ │ ├── NewsController.cs │ │ │ │ ├── PrivacyController.cs │ │ │ │ └── SeatsController.cs │ │ │ └── Views │ │ │ │ ├── About │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── FaqNavPages.cs │ │ │ │ ├── GetAll.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── Remove.cshtml │ │ │ │ ├── Cinemas │ │ │ │ ├── CinemaNavPages.cs │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── GetAll.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── Remove.cshtml │ │ │ │ ├── Contacts │ │ │ │ ├── Send.cshtml │ │ │ │ └── SuccessfullySend.cshtml │ │ │ │ ├── Countries │ │ │ │ ├── CountryNavPages.cs │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── GetAll.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── Remove.cshtml │ │ │ │ ├── Directors │ │ │ │ ├── Create.cshtml │ │ │ │ ├── DirectorNavPages.cs │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── GetAll.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── Remove.cshtml │ │ │ │ ├── Genres │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── GenreNavPages.cs │ │ │ │ ├── GetAll.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── Remove.cshtml │ │ │ │ ├── Halls │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── GetAll.cshtml │ │ │ │ ├── HallNavPages.cs │ │ │ │ ├── Index.cshtml │ │ │ │ └── Remove.cshtml │ │ │ │ ├── MovieProjections │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── GetAll.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── MovieProjectionNavPages.cs │ │ │ │ └── Remove.cshtml │ │ │ │ ├── Movies │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── GetAll.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── MovieNavPages.cs │ │ │ │ └── Remove.cshtml │ │ │ │ ├── News │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── GetAll.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── NewsNavPages.cs │ │ │ │ └── Remove.cshtml │ │ │ │ ├── Privacy │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── PrivacyNavPages.cs │ │ │ │ └── Remove.cshtml │ │ │ │ ├── Seats │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── GetAll.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Remove.cshtml │ │ │ │ └── SeatsNavPages.cs │ │ │ │ ├── Shared │ │ │ │ ├── AdminNavPages.cs │ │ │ │ ├── _AdminNav.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ └── Identity │ │ │ ├── IdentityHostingStartup.cs │ │ │ └── Pages │ │ │ ├── Account │ │ │ ├── AccessDenied.cshtml │ │ │ ├── AccessDenied.cshtml.cs │ │ │ ├── ConfirmEmail.cshtml │ │ │ ├── ConfirmEmail.cshtml.cs │ │ │ ├── ExternalLogin.cshtml │ │ │ ├── ExternalLogin.cshtml.cs │ │ │ ├── ForgotPassword.cshtml │ │ │ ├── ForgotPassword.cshtml.cs │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── ForgotPasswordConfirmation.cshtml.cs │ │ │ ├── InputModels │ │ │ │ ├── AjaxLoginInputModel.cs │ │ │ │ ├── AjaxRegisterInputModel.cs │ │ │ │ ├── ForgotPasswordInputModel.cs │ │ │ │ ├── LoginInputModel.cs │ │ │ │ └── RegisterInputModel.cs │ │ │ ├── Login.cshtml │ │ │ ├── Login.cshtml.cs │ │ │ ├── Logout.cshtml │ │ │ ├── Logout.cshtml.cs │ │ │ ├── Manage │ │ │ │ ├── ChangePassword.cshtml │ │ │ │ ├── ChangePassword.cshtml.cs │ │ │ │ ├── Email.cshtml │ │ │ │ ├── Email.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── InputModels │ │ │ │ │ ├── ChangePasswordInputModel.cs │ │ │ │ │ ├── EmailInputModel.cs │ │ │ │ │ ├── ExternalLoginInputModel.cs │ │ │ │ │ └── IndexInputModel.cs │ │ │ │ ├── ManageNavPages.cs │ │ │ │ ├── PersonalData.cshtml │ │ │ │ ├── PersonalData.cshtml.cs │ │ │ │ ├── TwoFactorAuthentication.cshtml │ │ │ │ ├── TwoFactorAuthentication.cshtml.cs │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _ManageNav.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Register.cshtml │ │ │ ├── Register.cshtml.cs │ │ │ ├── ResetPassword.cshtml │ │ │ ├── ResetPassword.cshtml.cs │ │ │ └── _ViewImports.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── CinemaWorld.Web.csproj │ │ ├── Controllers │ │ ├── AboutController.cs │ │ ├── BaseController.cs │ │ ├── ContactsController.cs │ │ ├── GenresController.cs │ │ ├── HomeController.cs │ │ ├── MovieCommentsController.cs │ │ ├── MoviesController.cs │ │ ├── NewsCommentsController.cs │ │ ├── NewsController.cs │ │ ├── RatingsController.cs │ │ ├── ScheduleController.cs │ │ ├── SettingsController.cs │ │ ├── TicketsController.cs │ │ └── UsersController.cs │ │ ├── Helpers │ │ ├── ExtractVideoHelper.cs │ │ └── ModelErrorsHelper.cs │ │ ├── Middlewares │ │ ├── AdminMiddleware.cs │ │ └── AdminMiddlewareExtensions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── ServiceDependencies │ │ │ └── cinemaworld - Web Deploy 2 │ │ │ │ └── profile.arm.json │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── TagHelpers │ │ └── LiTagHelper.cs │ │ ├── Views │ │ ├── About │ │ │ ├── Faq.cshtml │ │ │ └── Index.cshtml │ │ ├── Contacts │ │ │ ├── Index.cshtml │ │ │ └── ThankYou.cshtml │ │ ├── Genres │ │ │ └── ByName.cshtml │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ ├── Privacy.cshtml │ │ │ └── SuccessfullySubscribed.cshtml │ │ ├── Movies │ │ │ ├── All.cshtml │ │ │ └── Details.cshtml │ │ ├── News │ │ │ ├── Details.cshtml │ │ │ └── Index.cshtml │ │ ├── Schedule │ │ │ └── Index.cshtml │ │ ├── Settings │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── BookingError.cshtml │ │ │ ├── Error.cshtml │ │ │ ├── HttpError.cshtml │ │ │ ├── _AjaxLoginPartial.cshtml │ │ │ ├── _AjaxPartial.cshtml │ │ │ ├── _AjaxRegisterPartial.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _FooterPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ ├── _NavbarPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── Tickets │ │ │ └── Book.cshtml │ │ ├── Users │ │ │ └── ExternalFacebookLoginCallback.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── bundleconfig.json │ │ ├── libman.json │ │ └── wwwroot │ │ ├── css │ │ ├── book-ticket.css │ │ ├── bootstrap.css │ │ ├── contactstyle.css │ │ ├── faqstyle.css │ │ ├── flexslider.css │ │ ├── jquery.seat-charts.css │ │ ├── medile.css │ │ ├── news.css │ │ ├── owl.carousel.css │ │ ├── popuo-box.css │ │ ├── single.css │ │ ├── site.css │ │ ├── spinner-loader.css │ │ ├── style.css │ │ └── subscription.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── images │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 404.png │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── administrator.jpg │ │ ├── arrow.png │ │ ├── arrow1.png │ │ ├── banner2.jpg │ │ ├── c1.jpg │ │ ├── c10.jpg │ │ ├── c11.jpg │ │ ├── c12.jpg │ │ ├── c2.jpg │ │ ├── c3.jpg │ │ ├── c4.jpg │ │ ├── c5.jpg │ │ ├── c6.jpg │ │ ├── c7.jpg │ │ ├── c8.jpg │ │ ├── c9.jpg │ │ ├── favicon.ico │ │ ├── h1-1.jpg │ │ ├── h1.jpg │ │ ├── h10.jpg │ │ ├── h11.jpg │ │ ├── h12.jpg │ │ ├── h2-1.jpg │ │ ├── h2.jpg │ │ ├── h3-1.jpg │ │ ├── h3.jpg │ │ ├── h4.jpg │ │ ├── h5.jpg │ │ ├── h6.jpg │ │ ├── h7.jpg │ │ ├── h8.jpg │ │ ├── h9.jpg │ │ ├── img-sp.png │ │ ├── m1.jpg │ │ ├── m10.jpg │ │ ├── m11.jpg │ │ ├── m12.jpg │ │ ├── m13.jpg │ │ ├── m14.jpg │ │ ├── m15.jpg │ │ ├── m16.jpg │ │ ├── m17.jpg │ │ ├── m18.jpg │ │ ├── m19.jpg │ │ ├── m2.jpg │ │ ├── m20.jpg │ │ ├── m21.jpg │ │ ├── m22.jpg │ │ ├── m23.jpg │ │ ├── m3.jpg │ │ ├── m4.jpg │ │ ├── m5.jpg │ │ ├── m6.jpg │ │ ├── m7.jpg │ │ ├── m8.jpg │ │ ├── m9.jpg │ │ ├── n1.jpg │ │ ├── n10.jpg │ │ ├── n11.jpg │ │ ├── n2.jpg │ │ ├── n3.jpg │ │ ├── n4.jpg │ │ ├── n5.jpg │ │ ├── n6.jpg │ │ ├── n7.jpg │ │ ├── n8.jpg │ │ ├── n9.jpg │ │ ├── new.gif │ │ ├── new.png │ │ ├── news1.jpg │ │ ├── play-button.png │ │ └── user.jpg │ │ ├── js │ │ ├── easing.js │ │ ├── jquery.flexslider.js │ │ ├── jquery.magnific-popup.js │ │ ├── jquery.nicescroll.js │ │ ├── jquery.seat-charts.js │ │ ├── jquery.slidey.js │ │ ├── move-top.js │ │ ├── owl.carousel.js │ │ ├── rating.js │ │ ├── scripts.js │ │ ├── simplePlayer.js │ │ └── site.js │ │ ├── list-css │ │ ├── basictable.css │ │ ├── list.css │ │ └── table-style.css │ │ └── news-css │ │ └── news.css └── stylecop.json └── tests-code-coverage.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/azure-pipelines-1.yml -------------------------------------------------------------------------------- /screenshots/admin-dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/admin-dashboard.jpg -------------------------------------------------------------------------------- /screenshots/book-ticket-page-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/book-ticket-page-1.jpg -------------------------------------------------------------------------------- /screenshots/book-ticket-page-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/book-ticket-page-2.jpg -------------------------------------------------------------------------------- /screenshots/book-ticket-page-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/book-ticket-page-3.jpg -------------------------------------------------------------------------------- /screenshots/contacts-page-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/contacts-page-1.jpg -------------------------------------------------------------------------------- /screenshots/contacts-page-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/contacts-page-2.jpg -------------------------------------------------------------------------------- /screenshots/faq-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/faq-page.jpg -------------------------------------------------------------------------------- /screenshots/footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/footer.jpg -------------------------------------------------------------------------------- /screenshots/genres-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/genres-page.jpg -------------------------------------------------------------------------------- /screenshots/home-page-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/home-page-1.jpg -------------------------------------------------------------------------------- /screenshots/home-page-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/home-page-2.jpg -------------------------------------------------------------------------------- /screenshots/home-page-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/home-page-3.jpg -------------------------------------------------------------------------------- /screenshots/login-register-dialog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/login-register-dialog-1.jpg -------------------------------------------------------------------------------- /screenshots/login-register-dialog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/login-register-dialog-2.jpg -------------------------------------------------------------------------------- /screenshots/movies-add-comment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/movies-add-comment.jpg -------------------------------------------------------------------------------- /screenshots/movies-page-single.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/movies-page-single.jpg -------------------------------------------------------------------------------- /screenshots/movies-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/movies-page.jpg -------------------------------------------------------------------------------- /screenshots/movies-sub-comments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/movies-sub-comments.jpg -------------------------------------------------------------------------------- /screenshots/news-page-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/news-page-1.jpg -------------------------------------------------------------------------------- /screenshots/news-page-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/news-page-2.jpg -------------------------------------------------------------------------------- /screenshots/news-single-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/news-single-page.jpg -------------------------------------------------------------------------------- /screenshots/privacy-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/privacy-page.jpg -------------------------------------------------------------------------------- /screenshots/schedule-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/screenshots/schedule-page.jpg -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CinemaWorld.Common/Attributes/AllowedExtensionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Common/Attributes/AllowedExtensionsAttribute.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Common/Attributes/GoogleReCaptchaValidationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Common/Attributes/GoogleReCaptchaValidationAttribute.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Common/Attributes/MaxFileSizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Common/Attributes/MaxFileSizeAttribute.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Common/CinemaWorld.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Common/CinemaWorld.Common.csproj -------------------------------------------------------------------------------- /src/CinemaWorld.Common/GlobalConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Common/GlobalConstants.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Common/ReCaptchaSiteVerifyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Common/ReCaptchaSiteVerifyResponse.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.Common/CinemaWorld.Models.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.Common/CinemaWorld.Models.Common.csproj -------------------------------------------------------------------------------- /src/CinemaWorld.Models.Common/ModelValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.Common/ModelValidation.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/About/FaqCreateInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/About/FaqCreateInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/Cinemas/CinemaCreateInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/Cinemas/CinemaCreateInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/Contacts/SendContactInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/Contacts/SendContactInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/Countries/CountryCreateInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/Countries/CountryCreateInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/Directors/DirectorCreateInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/Directors/DirectorCreateInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/Genres/GenreCreateInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/Genres/GenreCreateInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/Halls/HallCreateInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/Halls/HallCreateInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/MovieProjections/MovieProjectionCreateInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/MovieProjections/MovieProjectionCreateInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/Movies/MovieCreateInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/Movies/MovieCreateInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/News/NewsCreateInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/News/NewsCreateInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/Privacy/PrivacyCreateInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/Privacy/PrivacyCreateInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/AdministratorInputModels/Seats/SeatCreateInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/AdministratorInputModels/Seats/SeatCreateInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/CinemaWorld.Models.InputModels.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/CinemaWorld.Models.InputModels.csproj -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/Comments/CreateCommentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/Comments/CreateCommentInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/MovieComments/CreateMovieCommentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/MovieComments/CreateMovieCommentInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/NewsComments/CreateNewsCommentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/NewsComments/CreateNewsCommentInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/Ratings/RatingInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/Ratings/RatingInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/Users/AjaxLoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/Users/AjaxLoginInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/Users/AjaxRegisterInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/Users/AjaxRegisterInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.InputModels/Users/ExternalLoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.InputModels/Users/ExternalLoginInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/About/FaqDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/About/FaqDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/About/FaqEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/About/FaqEditViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/AlphabeticalPagingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/AlphabeticalPagingViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/BookingErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/BookingErrorViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/CinemaWorld.Models.ViewModels.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/CinemaWorld.Models.ViewModels.csproj -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Cinemas/CinemaDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Cinemas/CinemaDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Cinemas/CinemaEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Cinemas/CinemaEditViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Comments/PostCommentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Comments/PostCommentViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Contacts/ContactFormEntryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Contacts/ContactFormEntryViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Contacts/UserEmailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Contacts/UserEmailViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Countries/CountryDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Countries/CountryDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Countries/CountryEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Countries/CountryEditViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Directors/DirectorDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Directors/DirectorDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Directors/DirectorEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Directors/DirectorEditViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Directors/DirectorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Directors/DirectorViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Genres/GenreDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Genres/GenreDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Genres/GenreEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Genres/GenreEditViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Genres/NavbarGenreViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Genres/NavbarGenreViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Halls/HallDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Halls/HallDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Halls/HallEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Halls/HallEditViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/HttpErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/HttpErrorViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/MovieComments/PostMovieCommentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/MovieComments/PostMovieCommentViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/MovieProjections/MovieProjectionDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/MovieProjections/MovieProjectionDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/MovieProjections/MovieProjectionEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/MovieProjections/MovieProjectionEditViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/MovieProjections/MovieProjectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/MovieProjections/MovieProjectionViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/AllMoviesListingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/AllMoviesListingViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/DetailsListingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/DetailsListingViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/MostPopularDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/MostPopularDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/MovieCountryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/MovieCountryViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/MovieDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/MovieDeleteViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/MovieDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/MovieDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/MovieEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/MovieEditViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/MovieGenreViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/MovieGenreViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/MovieViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/MovieViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/MoviesHomePageListingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/MoviesHomePageListingViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/MoviesListingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/MoviesListingViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/RecentlyAddedMovieDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/RecentlyAddedMovieDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/SliderMovieDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/SliderMovieDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/TopMovieDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/TopMovieDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Movies/TopRatingMovieDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Movies/TopRatingMovieDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/News/AllNewsListingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/News/AllNewsListingViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/News/NewsDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/News/NewsDeleteViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/News/NewsDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/News/NewsDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/News/NewsEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/News/NewsEditViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/News/NewsIndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/News/NewsIndexViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/News/NewsSingleDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/News/NewsSingleDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/News/TopNewsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/News/TopNewsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/News/UpdatedNewsDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/News/UpdatedNewsDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/NewsComments/PostNewsCommentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/NewsComments/PostNewsCommentViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/PaginatedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/PaginatedList.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Privacy/PrivacyDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Privacy/PrivacyDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Privacy/PrivacyEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Privacy/PrivacyEditViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Ratings/StarRatingResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Ratings/StarRatingResponseModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Schedule/ScheduleDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Schedule/ScheduleDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Seats/SeatDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Seats/SeatDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Seats/SeatEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Seats/SeatEditViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Settings/SettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Settings/SettingViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Settings/SettingsListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Settings/SettingsListViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Tickets/TicketDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Tickets/TicketDetailsViewModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.Models.ViewModels/Tickets/TicketInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.Models.ViewModels/Tickets/TicketInputModel.cs -------------------------------------------------------------------------------- /src/CinemaWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/CinemaWorld.sln -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Common/CinemaWorld.Data.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Common/CinemaWorld.Data.Common.csproj -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Common/DataValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Common/DataValidation.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Common/IDbQueryRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Common/IDbQueryRunner.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Common/Models/BaseDeletableModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Common/Models/BaseDeletableModel.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Common/Models/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Common/Models/BaseModel.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Common/Models/IAuditInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Common/Models/IAuditInfo.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Common/Models/IDeletableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Common/Models/IDeletableEntity.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Common/Repositories/IDeletableEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Common/Repositories/IDeletableEntityRepository.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Common/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Common/Repositories/IRepository.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Actor.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/AdminContactFromEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/AdminContactFromEntry.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/ApplicationRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/ApplicationRole.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/ApplicationUser.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Author.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Cinema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Cinema.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/CinemaWorld.Data.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/CinemaWorld.Data.Models.csproj -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/CinemaWorldUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/CinemaWorldUser.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Comment.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/ContactFormEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/ContactFormEntry.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Country.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Director.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Director.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Enumerations/CinemaCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Enumerations/CinemaCategory.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Enumerations/Gender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Enumerations/Gender.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Enumerations/HallCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Enumerations/HallCategory.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Enumerations/PaymentMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Enumerations/PaymentMethod.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Enumerations/Resolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Enumerations/Resolution.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Enumerations/SeatCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Enumerations/SeatCategory.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Enumerations/TicketType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Enumerations/TicketType.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Enumerations/TimeSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Enumerations/TimeSlot.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/FaqEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/FaqEntry.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Genre.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Hall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Hall.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Movie.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/MovieActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/MovieActor.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/MovieComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/MovieComment.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/MovieCountry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/MovieCountry.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/MovieDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/MovieDirector.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/MovieGenre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/MovieGenre.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/MovieNews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/MovieNews.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/MovieProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/MovieProjection.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/MovieReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/MovieReview.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/News.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/News.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/NewsComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/NewsComment.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Privacy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Privacy.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Promotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Promotion.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Review.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/ReviewAuthor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/ReviewAuthor.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/SaleTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/SaleTransaction.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Seat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Seat.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Seller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Seller.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Setting.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/ShoppingCart.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/StarRating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/StarRating.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/Ticket.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data.Models/TicketOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data.Models/TicketOrder.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/CinemaWorld.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/CinemaWorld.Data.csproj -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/CinemaWorldDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/CinemaWorldDbContext.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/DbQueryRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/DbQueryRunner.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/DesignTimeDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/DesignTimeDbContextFactory.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/EfExpressionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/EfExpressionHelper.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/EntityIndexesConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/EntityIndexesConfiguration.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/IdentityOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/IdentityOptionsProvider.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/Migrations/20200425112002_InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/Migrations/20200425112002_InitialMigration.Designer.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/Migrations/20200425112002_InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/Migrations/20200425112002_InitialMigration.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/Migrations/CinemaWorldDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/Migrations/CinemaWorldDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/Repositories/EfDeletableEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/Repositories/EfDeletableEntityRepository.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/Repositories/EfRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/Repositories/EfRepository.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/Seeding/ApplicationDbContextSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/Seeding/ApplicationDbContextSeeder.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/Seeding/DirectorsSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/Seeding/DirectorsSeeder.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/Seeding/ISeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/Seeding/ISeeder.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/Seeding/RolesSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/Seeding/RolesSeeder.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/Seeding/SeatsSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/Seeding/SeatsSeeder.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/Seeding/SettingsSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/Seeding/SettingsSeeder.cs -------------------------------------------------------------------------------- /src/Data/CinemaWorld.Data/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Data/CinemaWorld.Data/appsettings.json -------------------------------------------------------------------------------- /src/Rules.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Rules.ruleset -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/AboutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/AboutService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/CinemaWorld.Services.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/CinemaWorld.Services.Data.csproj -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/CinemasService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/CinemasService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/CloudinaryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/CloudinaryService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Common/ExceptionMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Common/ExceptionMessages.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Common/OperationalMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Common/OperationalMessages.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Common/Suffixes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Common/Suffixes.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/ContactsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/ContactsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/IAboutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/IAboutService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/IBaseDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/IBaseDataService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/ICinemasService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/ICinemasService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/ICloudinaryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/ICloudinaryService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/IContactsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/IContactsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/ICountriesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/ICountriesService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/IDirectorsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/IDirectorsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/IGenresService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/IGenresService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/IHallsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/IHallsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/IMovieCommentsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/IMovieCommentsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/IMovieProjectionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/IMovieProjectionsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/IMoviesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/IMoviesService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/INewsCommentsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/INewsCommentsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/INewsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/INewsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/IPrivacyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/IPrivacyService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/IRatingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/IRatingsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/ISeatsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/ISeatsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/ISettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/ISettingsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/Contracts/ITicketsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/Contracts/ITicketsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/CountriesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/CountriesService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/DirectorsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/DirectorsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/GenresService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/GenresService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/HallsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/HallsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/MovieCommentsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/MovieCommentsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/MovieProjectionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/MovieProjectionsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/MoviesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/MoviesService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/NewsCommentsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/NewsCommentsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/NewsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/NewsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/PrivacyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/PrivacyService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/RatingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/RatingsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/SeatsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/SeatsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/SettingsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Data/TicketsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Data/TicketsService.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Mapping/AutoMapperConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Mapping/AutoMapperConfig.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Mapping/CinemaWorld.Services.Mapping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Mapping/CinemaWorld.Services.Mapping.csproj -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Mapping/IHaveCustomMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Mapping/IHaveCustomMappings.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Mapping/IMapFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Mapping/IMapFrom.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Mapping/IMapTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Mapping/IMapTo.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Mapping/QueryableMappingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Mapping/QueryableMappingExtensions.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Messaging/CinemaWorld.Services.Messaging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Messaging/CinemaWorld.Services.Messaging.csproj -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Messaging/EmailAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Messaging/EmailAttachment.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Messaging/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Messaging/IEmailSender.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Messaging/NullMessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Messaging/NullMessageSender.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services.Messaging/SendGridEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services.Messaging/SendGridEmailSender.cs -------------------------------------------------------------------------------- /src/Services/CinemaWorld.Services/CinemaWorld.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Services/CinemaWorld.Services/CinemaWorld.Services.csproj -------------------------------------------------------------------------------- /src/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Settings.StyleCop -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/AboutServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/AboutServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/CinemaWorld.Services.Data.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/CinemaWorld.Services.Data.Tests.csproj -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/CinemasServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/CinemasServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/Configuration.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/ContactsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/ContactsServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/CountriesServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/CountriesServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/DirectorsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/DirectorsServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/GenresServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/GenresServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/HallsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/HallsServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/MovieCommentsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/MovieCommentsServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/MovieProjectionsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/MovieProjectionsServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/MoviesServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/MoviesServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/NewsCommentsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/NewsCommentsServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/NewsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/NewsServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/PrivacyServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/PrivacyServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/RatingsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/RatingsServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/SeatsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/SeatsServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/SettingsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/SettingsServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/Test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/Test.jpg -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Services.Data.Tests/TicketsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Services.Data.Tests/TicketsServiceTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Web.Tests/CinemaWorld.Web.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Web.Tests/CinemaWorld.Web.Tests.csproj -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Web.Tests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Web.Tests/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Web.Tests/SeleniumServerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Web.Tests/SeleniumServerFactory.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Web.Tests/SeleniumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Web.Tests/SeleniumTests.cs -------------------------------------------------------------------------------- /src/Tests/CinemaWorld.Web.Tests/WebTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/CinemaWorld.Web.Tests/WebTests.cs -------------------------------------------------------------------------------- /src/Tests/Sandbox/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/Sandbox/Program.cs -------------------------------------------------------------------------------- /src/Tests/Sandbox/Sandbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/Sandbox/Sandbox.csproj -------------------------------------------------------------------------------- /src/Tests/Sandbox/SandboxOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/Sandbox/SandboxOptions.cs -------------------------------------------------------------------------------- /src/Tests/Sandbox/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Tests/Sandbox/appsettings.json -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web.Infrastructure/AjaxObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web.Infrastructure/AjaxObject.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web.Infrastructure/CinemaWorld.Web.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web.Infrastructure/CinemaWorld.Web.Infrastructure.csproj -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/.config/dotnet-tools.json -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/AboutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/AboutController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/AdministrationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/AdministrationController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/CinemasController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/CinemasController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/ContactsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/ContactsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/CountriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/CountriesController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/DirectorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/DirectorsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/GenresController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/GenresController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/HallsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/HallsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/MovieProjectionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/MovieProjectionsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/MoviesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/MoviesController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/NewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/NewsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/PrivacyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/PrivacyController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Controllers/SeatsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Controllers/SeatsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/About/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/About/Create.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/About/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/About/Edit.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/About/FaqNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/About/FaqNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/About/GetAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/About/GetAll.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/About/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/About/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/About/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/About/Remove.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/CinemaNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/CinemaNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/Create.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/Edit.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/GetAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/GetAll.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Cinemas/Remove.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Contacts/Send.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Contacts/Send.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Contacts/SuccessfullySend.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Contacts/SuccessfullySend.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/CountryNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/CountryNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/Create.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/Edit.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/GetAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/GetAll.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Countries/Remove.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/Create.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/DirectorNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/DirectorNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/Edit.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/GetAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/GetAll.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Directors/Remove.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/Create.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/Edit.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/GenreNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/GenreNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/GetAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/GetAll.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Genres/Remove.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/Create.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/Edit.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/GetAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/GetAll.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/HallNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/HallNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Halls/Remove.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/Create.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/Edit.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/GetAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/GetAll.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/MovieProjectionNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/MovieProjectionNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/MovieProjections/Remove.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/Create.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/Edit.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/GetAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/GetAll.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/MovieNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/MovieNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Movies/Remove.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/News/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/News/Create.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/News/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/News/Edit.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/News/GetAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/News/GetAll.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/News/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/News/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/News/NewsNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/News/NewsNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/News/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/News/Remove.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Privacy/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Privacy/Create.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Privacy/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Privacy/Edit.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Privacy/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Privacy/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Privacy/PrivacyNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Privacy/PrivacyNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Privacy/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Privacy/Remove.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/Create.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/Edit.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/GetAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/GetAll.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/Remove.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/SeatsNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Seats/SeatsNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Shared/AdminNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Shared/AdminNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Shared/_AdminNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Shared/_AdminNav.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Administration/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Administration/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/IdentityHostingStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/IdentityHostingStartup.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ConfirmEmail.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ConfirmEmail.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ExternalLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ExternalLogin.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ExternalLogin.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ExternalLogin.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/InputModels/AjaxLoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/InputModels/AjaxLoginInputModel.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/InputModels/AjaxRegisterInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/InputModels/AjaxRegisterInputModel.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/InputModels/ForgotPasswordInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/InputModels/ForgotPasswordInputModel.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/InputModels/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/InputModels/LoginInputModel.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/InputModels/RegisterInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/InputModels/RegisterInputModel.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Login.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Logout.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Logout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Logout.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/Email.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/Email.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/Email.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/Email.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/InputModels/ChangePasswordInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/InputModels/ChangePasswordInputModel.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/InputModels/EmailInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/InputModels/EmailInputModel.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/InputModels/ExternalLoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/InputModels/ExternalLoginInputModel.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/InputModels/IndexInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/InputModels/IndexInputModel.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/ManageNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/ManageNavPages.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/_Layout.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using CinemaWorld.Web.Areas.Identity.Pages.Account.Manage 2 | -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Manage/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using CinemaWorld.Web.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/CinemaWorld.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/CinemaWorld.Web.csproj -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/AboutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/AboutController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/BaseController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/ContactsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/ContactsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/GenresController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/GenresController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/MovieCommentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/MovieCommentsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/MoviesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/MoviesController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/NewsCommentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/NewsCommentsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/NewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/NewsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/RatingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/RatingsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/ScheduleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/ScheduleController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/SettingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/SettingsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/TicketsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/TicketsController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Controllers/UsersController.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Helpers/ExtractVideoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Helpers/ExtractVideoHelper.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Helpers/ModelErrorsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Helpers/ModelErrorsHelper.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Middlewares/AdminMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Middlewares/AdminMiddleware.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Middlewares/AdminMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Middlewares/AdminMiddlewareExtensions.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Program.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Properties/ServiceDependencies/cinemaworld - Web Deploy 2/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Properties/ServiceDependencies/cinemaworld - Web Deploy 2/profile.arm.json -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Startup.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/TagHelpers/LiTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/TagHelpers/LiTagHelper.cs -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/About/Faq.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/About/Faq.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/About/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/About/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Contacts/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Contacts/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Contacts/ThankYou.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Contacts/ThankYou.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Genres/ByName.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Genres/ByName.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Home/SuccessfullySubscribed.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Home/SuccessfullySubscribed.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Movies/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Movies/All.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Movies/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Movies/Details.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/News/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/News/Details.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/News/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/News/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Schedule/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Schedule/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Settings/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Settings/Index.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/BookingError.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/BookingError.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/HttpError.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/HttpError.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/_AjaxLoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/_AjaxLoginPartial.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/_AjaxPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/_AjaxPartial.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/_AjaxRegisterPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/_AjaxRegisterPartial.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/_FooterPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/_FooterPartial.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/_NavbarPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/_NavbarPartial.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Tickets/Book.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Tickets/Book.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/Users/ExternalFacebookLoginCallback.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/Users/ExternalFacebookLoginCallback.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/bundleconfig.json -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/libman.json -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/book-ticket.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/book-ticket.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/bootstrap.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/contactstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/contactstyle.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/faqstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/faqstyle.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/flexslider.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/jquery.seat-charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/jquery.seat-charts.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/medile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/medile.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/news.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/news.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/owl.carousel.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/popuo-box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/popuo-box.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/single.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/single.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/spinner-loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/spinner-loader.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/style.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/css/subscription.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/css/subscription.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/2.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/3.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/4.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/404.png -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/5.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/6.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/7.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/administrator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/administrator.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/arrow.png -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/arrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/arrow1.png -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/banner2.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c1.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c10.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c11.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c12.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c2.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c3.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c4.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c5.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c6.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c7.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c8.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/c9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/c9.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/favicon.ico -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h1-1.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h1.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h10.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h11.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h12.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h2-1.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h2.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h3-1.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h3.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h4.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h5.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h6.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h7.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h8.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/h9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/h9.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/img-sp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/img-sp.png -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m1.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m10.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m11.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m12.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m13.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m14.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m15.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m16.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m17.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m18.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m19.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m2.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m20.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m21.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m22.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m23.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m3.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m4.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m5.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m6.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m7.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m8.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/m9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/m9.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/n1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/n1.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/n10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/n10.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/n11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/n11.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/n2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/n2.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/n3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/n3.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/n4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/n4.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/n5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/n5.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/n6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/n6.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/n7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/n7.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/n8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/n8.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/n9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/n9.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/new.gif -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/new.png -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/news1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/news1.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/play-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/play-button.png -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/images/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/images/user.jpg -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/easing.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/jquery.flexslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/jquery.flexslider.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/jquery.magnific-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/jquery.magnific-popup.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/jquery.nicescroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/jquery.nicescroll.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/jquery.seat-charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/jquery.seat-charts.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/jquery.slidey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/jquery.slidey.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/move-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/move-top.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/owl.carousel.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/rating.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/scripts.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/simplePlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/simplePlayer.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/list-css/basictable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/list-css/basictable.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/list-css/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/list-css/list.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/list-css/table-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/list-css/table-style.css -------------------------------------------------------------------------------- /src/Web/CinemaWorld.Web/wwwroot/news-css/news.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/Web/CinemaWorld.Web/wwwroot/news-css/news.css -------------------------------------------------------------------------------- /src/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/src/stylecop.json -------------------------------------------------------------------------------- /tests-code-coverage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavstoyanov99/CinemaWorld/HEAD/tests-code-coverage.png --------------------------------------------------------------------------------