├── .dockerignore ├── .editorconfig ├── .github └── workflows │ ├── docker-image.yml │ └── dotnet.yml ├── .gitignore ├── CleanArchitecture.Blazor.sln ├── Dockerfile ├── LICENSE ├── README.md ├── doc ├── 1.jpg ├── 2.jpg └── flow_chart.jpg ├── docker-compose.dcproj ├── docker-compose.override.yml ├── docker-compose.yml ├── src ├── Application │ ├── Application.csproj │ ├── Common │ │ ├── Behaviours │ │ │ ├── AuthorizationBehaviour.cs │ │ │ ├── CacheInvalidationBehaviour.cs │ │ │ ├── CachingBehaviour.cs │ │ │ ├── DomainEventPublishingBehavior.cs │ │ │ ├── LoggingBehaviour.cs │ │ │ ├── PerformanceBehaviour.cs │ │ │ ├── UnhandledExceptionBehaviour.cs │ │ │ └── ValidationBehaviour.cs │ │ ├── Configurations │ │ │ ├── AppConfigurationSettings.cs │ │ │ ├── DashbordSettings.cs │ │ │ ├── Features.cs │ │ │ ├── MailSettings.cs │ │ │ └── Theme.cs │ │ ├── EventHandlers │ │ │ ├── CreatedEventHandler.cs │ │ │ ├── DeletedEventHandler.cs │ │ │ └── UpdatedEventHandler.cs │ │ ├── Exceptions │ │ │ ├── ConflictException.cs │ │ │ ├── CustomException.cs │ │ │ ├── ForbiddenAccessException.cs │ │ │ ├── InternalServerException.cs │ │ │ ├── NotFoundException.cs │ │ │ ├── UnauthorizedException.cs │ │ │ └── ValidationException.cs │ │ ├── Extensions │ │ │ ├── EnumExtensions.cs │ │ │ ├── ExpressionExtensions.cs │ │ │ ├── QueryableExtensions.cs │ │ │ └── StringExtensions.cs │ │ ├── Helper │ │ │ └── ConstantStringLocalizer.cs │ │ ├── Interfaces │ │ │ ├── Caching │ │ │ │ ├── ICacheInvalidator.cs │ │ │ │ └── ICacheable.cs │ │ │ ├── IApplicationDbContext.cs │ │ │ ├── ICurrentUserService.cs │ │ │ ├── IDateTime.cs │ │ │ ├── IDictionaryService.cs │ │ │ ├── IDomainEventService.cs │ │ │ ├── IExcelService.cs │ │ │ ├── IMailService.cs │ │ │ ├── IPicklistService.cs │ │ │ ├── IResult.cs │ │ │ ├── IService.cs │ │ │ ├── ISpecification.cs │ │ │ ├── IUploadService.cs │ │ │ └── Identity │ │ │ │ ├── DTOs │ │ │ │ ├── RefreshTokenRequest.cs │ │ │ │ ├── TokenRequest.cs │ │ │ │ └── TokenResponse.cs │ │ │ │ ├── IIdentityService.cs │ │ │ │ └── IUsersStateContainer.cs │ │ ├── Mappings │ │ │ ├── IMapFrom.cs │ │ │ ├── MappingExtensions.cs │ │ │ └── MappingProfile.cs │ │ ├── Models │ │ │ ├── DomainEventNotification.cs │ │ │ ├── FilterRule.cs │ │ │ ├── MailRequest.cs │ │ │ ├── PaginatedData.cs │ │ │ ├── PaginatedList.cs │ │ │ ├── PaginationFilter.cs │ │ │ ├── PaginationRequest.cs │ │ │ ├── Result.cs │ │ │ ├── UploadRequest.cs │ │ │ └── UserModel.cs │ │ ├── PublishStrategies │ │ │ └── ParallelNoWaitPublisher.cs │ │ ├── Security │ │ │ ├── LoginFormModel.cs │ │ │ ├── RegisterFormModel.cs │ │ │ ├── RegisterFormModelFluentValidator.cs │ │ │ └── RequestAuthorizeAttribute.cs │ │ └── Specification │ │ │ └── Specification.cs │ ├── Constants │ │ ├── Button │ │ │ └── ButtonText.cs │ │ ├── Permission │ │ │ ├── PermissionModules.cs │ │ │ └── Permissions.cs │ │ ├── Prompt │ │ │ └── PromptText.cs │ │ └── Toast │ │ │ ├── Toast.cs │ │ │ └── ToastText.cs │ ├── DependencyInjection.cs │ ├── Features │ │ ├── ApprovalHistories │ │ │ ├── Caching │ │ │ │ └── ApprovalHistoryCacheKey.cs │ │ │ ├── Commands │ │ │ │ └── Create │ │ │ │ │ ├── CreateApprovalHistoryCommand.cs │ │ │ │ │ └── CreateApprovalHistoryCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── ApprovalHistoryDto.cs │ │ │ ├── EventHandlers │ │ │ │ └── ApprovalHistoryCreatedEventHandler.cs │ │ │ └── Queries │ │ │ │ ├── GetAll │ │ │ │ └── GetAllApprovalHistoriesQuery.cs │ │ │ │ ├── GetByVisitorId │ │ │ │ └── GetByVisitorIdApprovalHistoriesQuery.cs │ │ │ │ └── Pagination │ │ │ │ └── ApprovalHistoriesPaginationQuery.cs │ │ ├── AuditTrails │ │ │ ├── DTOs │ │ │ │ └── AuditTrailDto.cs │ │ │ └── Queries │ │ │ │ ├── Export │ │ │ │ └── ExportAuditTrailsQuery.cs │ │ │ │ └── PaginationQuery │ │ │ │ └── AuditTrailsWithPaginationQuery.cs │ │ ├── CheckinPoints │ │ │ ├── Caching │ │ │ │ └── CheckinPointCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditCheckinPointCommand.cs │ │ │ │ │ └── AddEditCheckinPointCommandValidator.cs │ │ │ │ └── Delete │ │ │ │ │ ├── DeleteCheckinPointCommand.cs │ │ │ │ │ └── DeleteCheckinPointCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── CheckinPointDto.cs │ │ │ ├── EventHandlers │ │ │ │ ├── CheckinPointCreatedEventHandler.cs │ │ │ │ ├── CheckinPointDeletedEventHandler.cs │ │ │ │ └── CheckinPointUpdatedEventHandler.cs │ │ │ └── Queries │ │ │ │ ├── GetAll │ │ │ │ └── GetAllCheckinPointsQuery.cs │ │ │ │ └── Pagination │ │ │ │ └── CheckinPointsPaginationQuery.cs │ │ ├── Departments │ │ │ ├── Caching │ │ │ │ └── DepartmentCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditDepartmentCommand.cs │ │ │ │ │ └── AddEditDepartmentCommandValidator.cs │ │ │ │ └── Delete │ │ │ │ │ ├── DeleteDepartmentCommand.cs │ │ │ │ │ └── DeleteDepartmentCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── DepartmentDto.cs │ │ │ ├── EventHandlers │ │ │ │ ├── DepartmentCreatedEventHandler.cs │ │ │ │ ├── DepartmentDeletedEventHandler.cs │ │ │ │ └── DepartmentUpdatedEventHandler.cs │ │ │ └── Queries │ │ │ │ ├── GetAll │ │ │ │ └── GetAllDepartmentsQuery.cs │ │ │ │ └── Pagination │ │ │ │ └── DepartmentsPaginationQuery.cs │ │ ├── Designations │ │ │ ├── Caching │ │ │ │ └── DesignationCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditDesignationCommand.cs │ │ │ │ │ └── AddEditDesignationCommandValidator.cs │ │ │ │ └── Delete │ │ │ │ │ ├── DeleteDesignationCommand.cs │ │ │ │ │ └── DeleteDesignationCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── DesignationDto.cs │ │ │ ├── EventHandlers │ │ │ │ ├── DesignationCreatedEventHandler.cs │ │ │ │ ├── DesignationDeletedEventHandler.cs │ │ │ │ └── DesignationUpdatedEventHandler.cs │ │ │ └── Queries │ │ │ │ ├── GetAll │ │ │ │ └── GetAllDesignationsQuery.cs │ │ │ │ └── Pagination │ │ │ │ └── DesignationsPaginationQuery.cs │ │ ├── Devices │ │ │ ├── Caching │ │ │ │ └── DeviceCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditDeviceCommand.cs │ │ │ │ │ └── AddEditDeviceCommandValidator.cs │ │ │ │ └── Delete │ │ │ │ │ ├── DeleteDeviceCommand.cs │ │ │ │ │ └── DeleteDeviceCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── DeviceDto.cs │ │ │ ├── EventHandlers │ │ │ │ ├── DeviceCreatedEventHandler.cs │ │ │ │ ├── DeviceDeletedEventHandler.cs │ │ │ │ └── DeviceUpdatedEventHandler.cs │ │ │ └── Queries │ │ │ │ ├── GetAll │ │ │ │ └── GetAllDevicesQuery.cs │ │ │ │ └── Pagination │ │ │ │ └── DevicesPaginationQuery.cs │ │ ├── DocumentTypes │ │ │ ├── Caching │ │ │ │ └── DocumentTypeCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditDocumentTypeCommand.cs │ │ │ │ │ └── AddEditDocumentTypeCommandValidator.cs │ │ │ │ ├── Delete │ │ │ │ │ ├── DeleteDocumentTypeCommand.cs │ │ │ │ │ └── DeleteDocumentTypeCommandValidator.cs │ │ │ │ └── Import │ │ │ │ │ ├── ImportDocumentTypesCommand.cs │ │ │ │ │ └── ImportDocumentTypesCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── DocumentTypeDto.cs │ │ │ └── Queries │ │ │ │ ├── Export │ │ │ │ └── ExportCustomersQuery.cs │ │ │ │ ├── GetAll │ │ │ │ └── DocumentTypesGetAllQuery.cs │ │ │ │ └── PaginationQuery │ │ │ │ └── DocumentTypesWithPaginationQuery.cs │ │ ├── Documents │ │ │ ├── Caching │ │ │ │ └── DocumentCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditDocumentCommand.cs │ │ │ │ │ └── AddEditDocumentCommandValidator.cs │ │ │ │ └── Delete │ │ │ │ │ ├── DeleteDocumentCommand.cs │ │ │ │ │ └── DeleteDocumentCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── DocumentDto.cs │ │ │ ├── EventHandlers │ │ │ │ └── DocumentCreatedEventHandler.cs │ │ │ └── Queries │ │ │ │ └── PaginationQuery │ │ │ │ └── DocumentsWithPaginationQuery.cs │ │ ├── Employees │ │ │ ├── Caching │ │ │ │ └── EmployeeCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditEmployeeCommand.cs │ │ │ │ │ └── AddEditEmployeeCommandValidator.cs │ │ │ │ └── Delete │ │ │ │ │ ├── DeleteEmployeeCommand.cs │ │ │ │ │ └── DeleteEmployeeCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── EmployeeDto.cs │ │ │ ├── EventHandlers │ │ │ │ ├── EmployeeCreatedEventHandler.cs │ │ │ │ ├── EmployeeDeletedEventHandler.cs │ │ │ │ └── EmployeeUpdatedEventHandler.cs │ │ │ └── Queries │ │ │ │ ├── GetAll │ │ │ │ └── GetAllEmployeesQuery.cs │ │ │ │ └── Pagination │ │ │ │ └── EmployeesPaginationQuery.cs │ │ ├── KeyValues │ │ │ ├── Caching │ │ │ │ └── KeyValueCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditKeyValueCommand.cs │ │ │ │ │ └── AddEditKeyValueCommandValidator.cs │ │ │ │ ├── Delete │ │ │ │ │ ├── DeleteKeyValueCommand.cs │ │ │ │ │ └── DeleteKeyValueCommandValidator.cs │ │ │ │ └── Import │ │ │ │ │ ├── ImportKeyValuesCommand.cs │ │ │ │ │ └── ImportKeyValuesCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── KeyValueDto.cs │ │ │ ├── EventHandlers │ │ │ │ └── KeyValueChangedEventHandler.cs │ │ │ └── Queries │ │ │ │ ├── ByName │ │ │ │ └── KeyValuesQueryByName.cs │ │ │ │ ├── Export │ │ │ │ └── ExportKeyValuesQuery.cs │ │ │ │ ├── GetAll │ │ │ │ └── GetAllKeyValuesQuery.cs │ │ │ │ └── PaginationQuery │ │ │ │ └── KeyValuesWithPaginationQuery.cs │ │ ├── Loggers │ │ │ ├── Caching │ │ │ │ └── LogCacheKey.cs │ │ │ ├── DTOs │ │ │ │ ├── LogDto.cs │ │ │ │ ├── LogLevelChartDto.cs │ │ │ │ └── LogTimeLineDto.cs │ │ │ └── Queries │ │ │ │ ├── ChatData │ │ │ │ └── LogsChatDataQuery.cs │ │ │ │ ├── Export │ │ │ │ └── ExportLogsQuery.cs │ │ │ │ └── PaginationQuery │ │ │ │ └── LogsWithPaginationQuery.cs │ │ ├── MessageTemplates │ │ │ ├── Caching │ │ │ │ └── MessageTemplateCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditMessageTemplateCommand.cs │ │ │ │ │ └── AddEditMessageTemplateCommandValidator.cs │ │ │ │ └── Delete │ │ │ │ │ ├── DeleteMessageTemplateCommand.cs │ │ │ │ │ └── DeleteMessageTemplateCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── MessageTemplateDto.cs │ │ │ ├── EventHandlers │ │ │ │ ├── MessageTemplateCreatedEventHandler.cs │ │ │ │ ├── MessageTemplateDeletedEventHandler.cs │ │ │ │ └── MessageTemplateUpdatedEventHandler.cs │ │ │ └── Queries │ │ │ │ ├── GetAll │ │ │ │ └── GetAllMessageTemplatesQuery.cs │ │ │ │ └── Pagination │ │ │ │ └── MessageTemplatesPaginationQuery.cs │ │ ├── Products │ │ │ ├── Caching │ │ │ │ └── ProductCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditProductCommand.cs │ │ │ │ │ └── AddEditProductCommandValidator.cs │ │ │ │ ├── Delete │ │ │ │ │ ├── DeleteProductCommand.cs │ │ │ │ │ └── DeleteProductCommandValidator.cs │ │ │ │ └── Import │ │ │ │ │ ├── ImportProductsCommand.cs │ │ │ │ │ └── ImportProductsCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── ProductDto.cs │ │ │ ├── EventHandlers │ │ │ │ ├── ProductCreatedEventHandler.cs │ │ │ │ ├── ProductDeletedEventHandler.cs │ │ │ │ └── ProductUpdatedEventHandler.cs │ │ │ └── Queries │ │ │ │ ├── Export │ │ │ │ └── ExportProductsQuery.cs │ │ │ │ ├── GetAll │ │ │ │ └── GetAllProductsQuery.cs │ │ │ │ ├── Pagination │ │ │ │ └── ProductsPaginationQuery.cs │ │ │ │ └── Specification │ │ │ │ └── SearchProductSpecification.cs │ │ ├── SiteConfigurations │ │ │ ├── Caching │ │ │ │ └── SiteConfigurationCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditSiteConfigurationCommand.cs │ │ │ │ │ └── AddEditSiteConfigurationCommandValidator.cs │ │ │ │ └── Delete │ │ │ │ │ ├── DeleteSiteConfigurationCommand.cs │ │ │ │ │ └── DeleteSiteConfigurationCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── SiteConfigurationDto.cs │ │ │ └── Queries │ │ │ │ ├── GetAll │ │ │ │ └── GetAllSiteConfigurationsQuery.cs │ │ │ │ ├── GetBySiteId │ │ │ │ └── GetBySiteIdConfigurationsQuery.cs │ │ │ │ └── Pagination │ │ │ │ └── SiteConfigurationsPaginationQuery.cs │ │ ├── Sites │ │ │ ├── Caching │ │ │ │ └── SiteCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── AddEdit │ │ │ │ │ ├── AddEditSiteCommand.cs │ │ │ │ │ └── AddEditSiteCommandValidator.cs │ │ │ │ └── Delete │ │ │ │ │ ├── DeleteSiteCommand.cs │ │ │ │ │ └── DeleteSiteCommandValidator.cs │ │ │ ├── DTOs │ │ │ │ └── SiteDto.cs │ │ │ ├── EventHandlers │ │ │ │ ├── SiteCreatedEventHandler.cs │ │ │ │ ├── SiteDeletedEventHandler.cs │ │ │ │ └── SiteUpdatedEventHandler.cs │ │ │ └── Queries │ │ │ │ ├── GetAll │ │ │ │ └── GetAllSitesQuery.cs │ │ │ │ └── Pagination │ │ │ │ └── SitesPaginationQuery.cs │ │ ├── VisitorHistories │ │ │ ├── Caching │ │ │ │ └── VisitorHistoryCacheKey.cs │ │ │ ├── Commands │ │ │ │ ├── Create │ │ │ │ │ ├── CreateVisitorHistoryCommand.cs │ │ │ │ │ └── CreateVisitorHistoryCommandValidator.cs │ │ │ │ └── Delete │ │ │ │ │ ├── DeleteVisitorHistoryCommand.cs │ │ │ │ │ └── DeleteVisitorHistoryCommandValidator.cs │ │ │ ├── Constants │ │ │ │ └── CheckStage.cs │ │ │ ├── DTOs │ │ │ │ └── VisitorHistoryDto.cs │ │ │ └── Queries │ │ │ │ ├── GetAll │ │ │ │ └── GetAllVisitorHistoriesQuery.cs │ │ │ │ ├── GetByVisitorId │ │ │ │ └── GetByVisitorIdVisitorHistoriesQuery.cs │ │ │ │ └── Pagination │ │ │ │ └── VisitorHistoriesPaginationQuery.cs │ │ └── Visitors │ │ │ ├── Caching │ │ │ └── VisitorCacheKey.cs │ │ │ ├── Commands │ │ │ ├── AddEdit │ │ │ │ ├── AddEditVisitorCommand.cs │ │ │ │ └── AddEditVisitorCommandValidator.cs │ │ │ ├── Approve │ │ │ │ ├── ApprovalVisitorsCommand.cs │ │ │ │ └── ApprovalVisitorsCommandValidator.cs │ │ │ ├── Checking │ │ │ │ ├── CheckingVisitorsCommand.cs │ │ │ │ └── CheckingVisitorsCommandValidator.cs │ │ │ ├── CompleteVisitorInfo │ │ │ │ ├── CompleteVisitorInfoCommand.cs │ │ │ │ └── CompleteVisitorInfoCommandValidator.cs │ │ │ ├── Confirm │ │ │ │ ├── ConfirmVisitorCommand.cs │ │ │ │ └── ConfirmVisitorCommandValidator.cs │ │ │ ├── Create │ │ │ │ ├── CreateVisitorCommand.cs │ │ │ │ ├── CreateVisitorCommandValidator.cs │ │ │ │ └── CreateVisitorCompanionDtoValidator.cs │ │ │ ├── Delete │ │ │ │ ├── DeleteVisitorCommand.cs │ │ │ │ └── DeleteVisitorCommandValidator.cs │ │ │ ├── Request │ │ │ │ ├── VisitorRequestCommand.cs │ │ │ │ └── VisitorRequestCommandValidator.cs │ │ │ ├── Survey │ │ │ │ └── UpdateVisitorSurveyResponseCommand.cs │ │ │ └── Update │ │ │ │ ├── UpdateVisitorCommand.cs │ │ │ │ └── UpdateVisitorCommandValidator.cs │ │ │ ├── Constant │ │ │ ├── ApprovalOutcome.cs │ │ │ ├── VisitorProcess.cs │ │ │ └── VisitorStatus.cs │ │ │ ├── DTOs │ │ │ ├── CompanionDto.cs │ │ │ ├── VisitorDto.cs │ │ │ └── VisitorStatusSumarryDto.cs │ │ │ ├── EventHandlers │ │ │ ├── VisitorCreatedEventHandler.cs │ │ │ ├── VisitorDeletedEventHandler.cs │ │ │ └── VisitorUpdatedEventHandler.cs │ │ │ └── Queries │ │ │ ├── GetAll │ │ │ └── GetAllVisitorsQuery.cs │ │ │ ├── GetById │ │ │ └── GetByIdVisitorQuery.cs │ │ │ ├── Kanban │ │ │ └── GetKanbanDataQuery.cs │ │ │ ├── Pagination │ │ │ └── VisitorsPaginationQuery.cs │ │ │ ├── Related │ │ │ └── GetRelatedVisitorQuery.cs │ │ │ ├── Reports │ │ │ └── GetDashboardDataQuery.cs │ │ │ └── Search │ │ │ ├── SearchPendingApprovalVisitorsQuery.cs │ │ │ └── SearchVisitorQuery.cs │ ├── Resources │ │ ├── Constants │ │ │ ├── ConstantString.Designer.cs │ │ │ ├── ConstantString.de-DE.resx │ │ │ ├── ConstantString.en.resx │ │ │ ├── ConstantString.es-ES.resx │ │ │ ├── ConstantString.fr-FR.resx │ │ │ ├── ConstantString.ja-JP.resx │ │ │ ├── ConstantString.km-KH.resx │ │ │ ├── ConstantString.resx │ │ │ ├── ConstantString.ru.resx │ │ │ └── ConstantString.zh-CN.resx │ │ ├── Customers │ │ │ ├── Commands │ │ │ │ └── Import │ │ │ │ │ ├── ImportCustomersCommandHandler.Designer.cs │ │ │ │ │ ├── ImportCustomersCommandHandler.de-DE.resx │ │ │ │ │ ├── ImportCustomersCommandHandler.en.resx │ │ │ │ │ ├── ImportCustomersCommandHandler.ja-JP.resx │ │ │ │ │ ├── ImportCustomersCommandHandler.resx │ │ │ │ │ ├── ImportCustomersCommandHandler.ru.resx │ │ │ │ │ └── ImportCustomersCommandHandler.zh-CN.resx │ │ │ └── Queries │ │ │ │ └── Export │ │ │ │ ├── ExportCustomersQueryHandler.Designer.cs │ │ │ │ ├── ExportCustomersQueryHandler.de-DE.resx │ │ │ │ ├── ExportCustomersQueryHandler.en.resx │ │ │ │ ├── ExportCustomersQueryHandler.ja-JP.resx │ │ │ │ ├── ExportCustomersQueryHandler.resx │ │ │ │ ├── ExportCustomersQueryHandler.ru.resx │ │ │ │ └── ExportCustomersQueryHandler.zh-CN.resx │ │ ├── DocumentTypes │ │ │ ├── Commands │ │ │ │ └── Import │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.Designer.cs │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.de-DE.resx │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.en.resx │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.ja-JP.resx │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.resx │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.ru.resx │ │ │ │ │ └── ImportDocumentTypesCommandHandler.zh-CN.resx │ │ │ └── Queries │ │ │ │ └── Export │ │ │ │ ├── ExportDocumentTypesQueryHandler.Designer.cs │ │ │ │ ├── ExportDocumentTypesQueryHandler.de-DE.resx │ │ │ │ ├── ExportDocumentTypesQueryHandler.en.resx │ │ │ │ ├── ExportDocumentTypesQueryHandler.ja-JP.resx │ │ │ │ ├── ExportDocumentTypesQueryHandler.resx │ │ │ │ ├── ExportDocumentTypesQueryHandler.ru.resx │ │ │ │ └── ExportDocumentTypesQueryHandler.zh-CN.resx │ │ ├── Documents │ │ │ └── Queries │ │ │ │ └── Export │ │ │ │ ├── ExportDocumentsQueryHandler.Designer.cs │ │ │ │ ├── ExportDocumentsQueryHandler.de-DE.resx │ │ │ │ ├── ExportDocumentsQueryHandler.en.resx │ │ │ │ ├── ExportDocumentsQueryHandler.ja-JP.resx │ │ │ │ ├── ExportDocumentsQueryHandler.resx │ │ │ │ ├── ExportDocumentsQueryHandler.ru.resx │ │ │ │ └── ExportDocumentsQueryHandler.zh-CN.resx │ │ ├── Features │ │ │ ├── ApprovalDatas │ │ │ │ └── Queries │ │ │ │ │ └── Export │ │ │ │ │ ├── ExportApprovalDatasQueryHandler.Designer.cs │ │ │ │ │ ├── ExportApprovalDatasQueryHandler.de-DE.resx │ │ │ │ │ ├── ExportApprovalDatasQueryHandler.en.resx │ │ │ │ │ ├── ExportApprovalDatasQueryHandler.ja-JP.resx │ │ │ │ │ ├── ExportApprovalDatasQueryHandler.resx │ │ │ │ │ ├── ExportApprovalDatasQueryHandler.ru.resx │ │ │ │ │ └── ExportApprovalDatasQueryHandler.zh-CN.resx │ │ │ ├── AuditTrails │ │ │ │ └── Queries │ │ │ │ │ └── Export │ │ │ │ │ ├── ExportAuditTrailsQuery.Designer.cs │ │ │ │ │ ├── ExportAuditTrailsQuery.de-DE.resx │ │ │ │ │ ├── ExportAuditTrailsQuery.en.resx │ │ │ │ │ ├── ExportAuditTrailsQuery.ja-JP.resx │ │ │ │ │ ├── ExportAuditTrailsQuery.resx │ │ │ │ │ ├── ExportAuditTrailsQuery.ru.resx │ │ │ │ │ └── ExportAuditTrailsQuery.zh-CN.resx │ │ │ ├── Customers │ │ │ │ ├── Commands │ │ │ │ │ └── Import │ │ │ │ │ │ ├── ImportCustomersCommandHandler.Designer.cs │ │ │ │ │ │ ├── ImportCustomersCommandHandler.de-DE.resx │ │ │ │ │ │ ├── ImportCustomersCommandHandler.en.resx │ │ │ │ │ │ ├── ImportCustomersCommandHandler.ja-JP.resx │ │ │ │ │ │ ├── ImportCustomersCommandHandler.resx │ │ │ │ │ │ ├── ImportCustomersCommandHandler.ru.resx │ │ │ │ │ │ └── ImportCustomersCommandHandler.zh-CN.resx │ │ │ │ └── Queries │ │ │ │ │ └── Export │ │ │ │ │ ├── ExportCustomersQueryHandler.Designer.cs │ │ │ │ │ ├── ExportCustomersQueryHandler.de-DE.resx │ │ │ │ │ ├── ExportCustomersQueryHandler.en.resx │ │ │ │ │ ├── ExportCustomersQueryHandler.ja-JP.resx │ │ │ │ │ ├── ExportCustomersQueryHandler.resx │ │ │ │ │ ├── ExportCustomersQueryHandler.ru.resx │ │ │ │ │ └── ExportCustomersQueryHandler.zh-CN.resx │ │ │ ├── DocumentTypes │ │ │ │ ├── Commands │ │ │ │ │ └── Import │ │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.Designer.cs │ │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.de-DE.resx │ │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.en.resx │ │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.ja-JP.resx │ │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.resx │ │ │ │ │ │ ├── ImportDocumentTypesCommandHandler.ru.resx │ │ │ │ │ │ └── ImportDocumentTypesCommandHandler.zh-CN.resx │ │ │ │ └── Queries │ │ │ │ │ └── Export │ │ │ │ │ ├── ExportDocumentTypesQueryHandler.Designer.cs │ │ │ │ │ ├── ExportDocumentTypesQueryHandler.de-DE.resx │ │ │ │ │ ├── ExportDocumentTypesQueryHandler.en.resx │ │ │ │ │ ├── ExportDocumentTypesQueryHandler.ja-JP.resx │ │ │ │ │ ├── ExportDocumentTypesQueryHandler.resx │ │ │ │ │ ├── ExportDocumentTypesQueryHandler.ru.resx │ │ │ │ │ └── ExportDocumentTypesQueryHandler.zh-CN.resx │ │ │ ├── Documents │ │ │ │ └── Queries │ │ │ │ │ └── Export │ │ │ │ │ ├── ExportDocumentsQueryHandler.Designer.cs │ │ │ │ │ ├── ExportDocumentsQueryHandler.de-DE.resx │ │ │ │ │ ├── ExportDocumentsQueryHandler.en.resx │ │ │ │ │ ├── ExportDocumentsQueryHandler.ja-JP.resx │ │ │ │ │ ├── ExportDocumentsQueryHandler.resx │ │ │ │ │ ├── ExportDocumentsQueryHandler.ru.resx │ │ │ │ │ └── ExportDocumentsQueryHandler.zh-CN.resx │ │ │ └── KeyValues │ │ │ │ ├── Commands │ │ │ │ └── Import │ │ │ │ │ ├── ImportKeyValuesCommandHandler.Designer.cs │ │ │ │ │ ├── ImportKeyValuesCommandHandler.de-DE.resx │ │ │ │ │ ├── ImportKeyValuesCommandHandler.en.resx │ │ │ │ │ ├── ImportKeyValuesCommandHandler.ja-JP.resx │ │ │ │ │ ├── ImportKeyValuesCommandHandler.resx │ │ │ │ │ ├── ImportKeyValuesCommandHandler.ru.resx │ │ │ │ │ └── ImportKeyValuesCommandHandler.zh-CN.resx │ │ │ │ └── Queries │ │ │ │ └── Export │ │ │ │ ├── ExportKeyValuesQueryHandler.Designer.cs │ │ │ │ ├── ExportKeyValuesQueryHandler.de-DE.resx │ │ │ │ ├── ExportKeyValuesQueryHandler.en.resx │ │ │ │ ├── ExportKeyValuesQueryHandler.ja-JP.resx │ │ │ │ ├── ExportKeyValuesQueryHandler.resx │ │ │ │ ├── ExportKeyValuesQueryHandler.ru.resx │ │ │ │ └── ExportKeyValuesQueryHandler.zh-CN.resx │ │ └── KeyValues │ │ │ ├── Commands │ │ │ └── Import │ │ │ │ ├── ImportKeyValuesCommandHandler.Designer.cs │ │ │ │ ├── ImportKeyValuesCommandHandler.de-DE.resx │ │ │ │ ├── ImportKeyValuesCommandHandler.en.resx │ │ │ │ ├── ImportKeyValuesCommandHandler.ja-JP.resx │ │ │ │ ├── ImportKeyValuesCommandHandler.resx │ │ │ │ ├── ImportKeyValuesCommandHandler.ru.resx │ │ │ │ └── ImportKeyValuesCommandHandler.zh-CN.resx │ │ │ └── Queries │ │ │ └── Export │ │ │ ├── ExportKeyValuesQueryHandler.Designer.cs │ │ │ ├── ExportKeyValuesQueryHandler.de-DE.resx │ │ │ ├── ExportKeyValuesQueryHandler.en.resx │ │ │ ├── ExportKeyValuesQueryHandler.ja-JP.resx │ │ │ ├── ExportKeyValuesQueryHandler.resx │ │ │ ├── ExportKeyValuesQueryHandler.ru.resx │ │ │ └── ExportKeyValuesQueryHandler.zh-CN.resx │ ├── Services │ │ ├── Message │ │ │ ├── MailMessageService.cs │ │ │ └── SMSMessageService.cs │ │ └── Picklist │ │ │ └── PicklistService.cs │ └── _Imports.cs ├── Blazor.Server.UI │ ├── App.razor │ ├── Blazor.Server.UI.csproj │ ├── Components │ │ ├── AutoComplete │ │ │ └── AssignSiteIdAutocomplete.cs │ │ ├── Common │ │ │ ├── CustomError.razor │ │ │ ├── CustomValidation.cs │ │ │ ├── ErrorHandler.razor │ │ │ ├── ErrorHandler.razor.cs │ │ │ ├── OnlineUsersComponent.razor │ │ │ ├── PicklistAutocomplete.cs │ │ │ └── TablePager.razor │ │ ├── Dialogs │ │ │ ├── DeleteConfirmation.razor │ │ │ └── LogoutConfirmation.razor │ │ ├── Index │ │ │ ├── CountedMonthly.razor │ │ │ ├── CountedPurpose.razor │ │ │ └── SummaryDashboard.razor │ │ ├── Localization │ │ │ └── LanguageSelector.razor │ │ └── Shared │ │ │ ├── CommandPalette.razor │ │ │ ├── CommandPalette.razor.cs │ │ │ ├── NavMenu.razor │ │ │ ├── NavMenu.razor.cs │ │ │ ├── NotificationMenu.razor │ │ │ ├── NotificationMenu.razor.cs │ │ │ ├── SideMenu.razor │ │ │ ├── SideMenu.razor.cs │ │ │ ├── Themes │ │ │ ├── ThemesButton.razor │ │ │ ├── ThemesButton.razor.cs │ │ │ ├── ThemesMenu.razor │ │ │ └── ThemesMenu.razor.cs │ │ │ ├── UserMenu.razor │ │ │ └── UserMenu.razor.cs │ ├── Models │ │ ├── Localization │ │ │ └── LanguageCode.cs │ │ ├── Notification │ │ │ ├── NotificationModel.cs │ │ │ └── NotificationTypes.cs │ │ └── SideMenu │ │ │ ├── MenuSectionItemModel.cs │ │ │ ├── MenuSectionModel.cs │ │ │ ├── MenuSectionSubItemModel.cs │ │ │ └── PageStatus.cs │ ├── Pages │ │ ├── Authentication │ │ │ ├── Forgot.razor │ │ │ ├── Login.razor │ │ │ ├── Register.razor │ │ │ └── Reset.razor │ │ ├── CheckinPoints │ │ │ ├── CheckinPointAutocomplete.cs │ │ │ ├── CheckinPointWithSiteIdAutocomplete.cs │ │ │ ├── CheckinPoints.razor │ │ │ ├── SiteAutocomplete.cs │ │ │ └── _CheckinPointFormDialog.razor │ │ ├── Departments │ │ │ ├── DepartmentAutocomplete.cs │ │ │ ├── Departments.razor │ │ │ └── _DepartmentFormDialog.razor │ │ ├── Designations │ │ │ ├── DesignationAutocomplete.cs │ │ │ ├── Designations.razor │ │ │ └── _DesignationFormDialog.razor │ │ ├── Devices │ │ │ ├── CheckinPointAutocomplete.cs │ │ │ ├── Devices.razor │ │ │ └── _DeviceFormDialog.razor │ │ ├── Employees │ │ │ ├── AdvancedSearchEmployeesComponent.razor │ │ │ ├── DepartmentAutocomplete.cs │ │ │ ├── DesignationAutocomplete.cs │ │ │ ├── Employees.razor │ │ │ └── _EmployeeFormDialog.razor │ │ ├── Identity │ │ │ ├── Roles │ │ │ │ ├── PermissionsModel.cs │ │ │ │ ├── RoleFormModel.cs │ │ │ │ ├── Roles.razor │ │ │ │ ├── _PermissionsDrawer.razor │ │ │ │ └── _RoleFormDialog.razor │ │ │ └── Users │ │ │ │ ├── AssignDepartmentAutocomplete.cs │ │ │ │ ├── AssignSiteAutocomplete.cs │ │ │ │ ├── Profile.razor │ │ │ │ ├── ResetPasswordFormModel.cs │ │ │ │ ├── ResetPasswordFormModelValidator.cs │ │ │ │ ├── SelectSiteAutocomplete.cs │ │ │ │ ├── UserFormModel.cs │ │ │ │ ├── UserFormModelValidator.cs │ │ │ │ ├── Users.razor │ │ │ │ ├── _ResetPasswordDialog.razor │ │ │ │ ├── _UserForm.razor │ │ │ │ └── _UserFormDialog.razor │ │ ├── Index.razor │ │ ├── MessageTemplates │ │ │ ├── MessageTemplates.razor │ │ │ └── _MessageTemplateFormDialog.razor │ │ ├── Products │ │ │ ├── AdvancedSearchProductsComponent.razor │ │ │ ├── Products.razor │ │ │ └── _ProductFormDialog.razor │ │ ├── SiteConfigurations │ │ │ ├── SiteConfigurations.razor │ │ │ └── _SiteConfigurationFormDialog.razor │ │ ├── Sites │ │ │ ├── SiteAutocomplete.cs │ │ │ ├── SiteWithAddressAutocomplete.cs │ │ │ ├── Sites.razor │ │ │ └── _SiteFormDialog.razor │ │ ├── SystemManagement │ │ │ ├── AuditTrails.razor │ │ │ ├── Components │ │ │ │ └── LogsLineCharts.razor │ │ │ ├── Dictionaries.razor │ │ │ └── Logs.razor │ │ ├── Visitors │ │ │ ├── AddEditCompanionComponent.razor │ │ │ ├── AdvancedSearchVisitorsComponent.razor │ │ │ ├── Checkin.razor │ │ │ ├── CheckinComponent │ │ │ │ ├── CheckinHistoryComponent.razor │ │ │ │ ├── CheckinViewComponent.razor │ │ │ │ └── CheckoutViewComponent.razor │ │ │ ├── CompanionComponent.razor │ │ │ ├── Detail │ │ │ │ ├── Detail.razor │ │ │ │ ├── DetailInfoComponent.razor │ │ │ │ ├── RelatedVisitorsComponent.razor │ │ │ │ ├── StatusFlowComponent.razor │ │ │ │ └── VisitorHeaderComponent.razor │ │ │ ├── EmployeeAutocomplete.cs │ │ │ ├── Kanban │ │ │ │ └── KanbanComponent.razor │ │ │ ├── MyCode.razor │ │ │ ├── MyPassCodeComponent.razor │ │ │ ├── PendingApprovalComponent.razor │ │ │ ├── PendingApprval.razor │ │ │ ├── PendingCheckin.razor │ │ │ ├── PendingCheckinComponent.razor │ │ │ ├── PendingConfirm │ │ │ │ ├── PendingConfirm.razor │ │ │ │ └── PendingConfirmComponent.razor │ │ │ ├── PendingVisitor │ │ │ │ ├── CompanionInfoComponent.razor │ │ │ │ └── CompleteVisitInfo.razor │ │ │ ├── PreRegister.razor │ │ │ ├── QrCodeComponent.razor │ │ │ ├── RejectDialog │ │ │ │ └── RejectConfirmDialog.razor │ │ │ ├── UploadAvatarComponent.razor │ │ │ ├── UploadPhotoComponent.razor │ │ │ ├── ViewComponent │ │ │ │ ├── ActivityTableViewComponent.razor │ │ │ │ ├── AttachmentsComponent.razor │ │ │ │ ├── CompanionTableViewComponent.razor │ │ │ │ ├── VisitDetailViewComponent.razor │ │ │ │ └── VisitHistoryTableViewComponent.razor │ │ │ ├── VisitorApprovalViewComponent.razor │ │ │ ├── VisitorCheckingViewComponent.razor │ │ │ ├── VisitorHistories.razor │ │ │ ├── VisitorRequest │ │ │ │ ├── QuickSearchVisitorsComponent.razor │ │ │ │ ├── VisitorAutocompleteComponent.razor │ │ │ │ ├── VisitorRequest.razor │ │ │ │ └── _QuickSearchDialog.razor │ │ │ ├── VisitorViewComponent.razor │ │ │ ├── Visitors.razor │ │ │ ├── _ApprovalDialog.razor │ │ │ ├── _CompanionDialog.razor │ │ │ ├── _PreviewDialog.razor │ │ │ └── _VisitorFormDialog.razor │ │ ├── _Host.cshtml │ │ └── _Layout.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── Components │ │ │ ├── Localization │ │ │ │ ├── LanguageSelector.de-DE.resx │ │ │ │ ├── LanguageSelector.es-ES.resx │ │ │ │ ├── LanguageSelector.fr-FR.resx │ │ │ │ ├── LanguageSelector.ja-JP.resx │ │ │ │ ├── LanguageSelector.km-KH.resx │ │ │ │ ├── LanguageSelector.resx │ │ │ │ └── LanguageSelector.zh-CN.resx │ │ │ └── Shared │ │ │ │ ├── SideMenu.resx │ │ │ │ └── SideMenu.zh-CN.resx │ │ ├── Pages │ │ │ ├── Authentication │ │ │ │ ├── Forgot.resx │ │ │ │ ├── Forgot.zh-CN.resx │ │ │ │ ├── Login.resx │ │ │ │ ├── Login.zh-CN.resx │ │ │ │ ├── Register.resx │ │ │ │ ├── Register.zh-CN.resx │ │ │ │ ├── Reset.resx │ │ │ │ └── Reset.zh-CN.resx │ │ │ ├── CheckinPoints │ │ │ │ ├── CheckinPoints.resx │ │ │ │ └── CheckinPoints.zh-CN.resx │ │ │ ├── Departments │ │ │ │ ├── Departments.resx │ │ │ │ └── Departments.zh-CN.resx │ │ │ ├── Designations │ │ │ │ ├── Designations.resx │ │ │ │ └── Designations.zh-CN.resx │ │ │ ├── Devices │ │ │ │ ├── Devices.resx │ │ │ │ └── Devices.zh-CN.resx │ │ │ ├── Employees │ │ │ │ ├── Employees.resx │ │ │ │ └── Employees.zh-CN.resx │ │ │ ├── Identity │ │ │ │ ├── Roles │ │ │ │ │ ├── Roles.resx │ │ │ │ │ └── Roles.zh-CN.resx │ │ │ │ └── Users │ │ │ │ │ ├── Profile.resx │ │ │ │ │ ├── Profile.zh-CN.resx │ │ │ │ │ ├── Users.resx │ │ │ │ │ └── Users.zh-CN.resx │ │ │ ├── Index.resx │ │ │ ├── Index.zh-CN.resx │ │ │ ├── MessageTemplates │ │ │ │ ├── MessageTemplates.resx │ │ │ │ └── MessageTemplates.zh-CN.resx │ │ │ ├── Products │ │ │ │ ├── Products.de-DE.resx │ │ │ │ ├── Products.en.resx │ │ │ │ ├── Products.es-ES.resx │ │ │ │ ├── Products.fr-FR.resx │ │ │ │ ├── Products.ja-JP.resx │ │ │ │ ├── Products.km-KH.resx │ │ │ │ ├── Products.resx │ │ │ │ ├── Products.ru.resx │ │ │ │ └── Products.zh-CN.resx │ │ │ ├── SiteConfigurations │ │ │ │ ├── SiteConfigurations.resx │ │ │ │ └── SiteConfigurations.zh-CN.resx │ │ │ ├── Sites │ │ │ │ ├── Sites.resx │ │ │ │ └── Sites.zh-CN.resx │ │ │ ├── SystemManagement │ │ │ │ ├── AuditTrails.resx │ │ │ │ ├── AuditTrails.zh-CN.resx │ │ │ │ ├── Dictionaries.resx │ │ │ │ ├── Dictionaries.zh-CN.resx │ │ │ │ ├── Logs.resx │ │ │ │ └── Logs.zh-CN.resx │ │ │ └── Visitors │ │ │ │ ├── VisitorHistories.resx │ │ │ │ ├── VisitorHistories.zh-CN.resx │ │ │ │ ├── Visitors.resx │ │ │ │ └── Visitors.zh-CN.resx │ │ └── Shared │ │ │ ├── SharedResource.resx │ │ │ └── SharedResource.zh-CN.resx │ ├── Services │ │ ├── Layout │ │ │ └── LayoutService.cs │ │ ├── Navigation │ │ │ ├── IMenuService.cs │ │ │ └── MenuService.cs │ │ ├── Notifications │ │ │ ├── INotificationsService.cs │ │ │ ├── NotificationMessages.cs │ │ │ └── NotificationsService.cs │ │ ├── QrCodeBitmapExtensions.cs │ │ └── UserPreferences │ │ │ ├── UserPreferences.cs │ │ │ └── UserPreferencesService.cs │ ├── Shared │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.cs │ │ ├── MudBlazorLogo.razor │ │ ├── SharedResource.cs │ │ └── UserLoginState.razor │ ├── Theme │ │ └── DefaultTheme.cs │ ├── _Imports.cs │ ├── _Imports.razor │ ├── appsettings.json │ ├── libman.json │ ├── nav.json │ └── wwwroot │ │ ├── css │ │ └── app.css │ │ ├── favicon.ico │ │ ├── icon-192.png │ │ ├── js │ │ ├── apex-chart-wrapper.js │ │ ├── gapi │ │ │ └── auth2config.js │ │ ├── html5-qrcode │ │ │ └── html5-qrcode.min.js │ │ ├── msal │ │ │ └── authConfig.js │ │ └── webcam.js │ │ │ └── src │ │ │ ├── webcam.js │ │ │ └── webcam.min.js │ │ └── sample-data │ │ ├── articles.json │ │ ├── avatar.png │ │ ├── notifications.json │ │ └── weather.json ├── Domain │ ├── Common │ │ ├── AuditableEntity.cs │ │ ├── DomainEvent.cs │ │ ├── IAuditTrial.cs │ │ └── ValueObject.cs │ ├── Domain.csproj │ ├── Entities │ │ ├── ApprovalHistory.cs │ │ ├── Audit │ │ │ └── AuditTrail.cs │ │ ├── CheckinPoint.cs │ │ ├── Companion.cs │ │ ├── Customer.cs │ │ ├── Department.cs │ │ ├── Device.cs │ │ ├── Document.cs │ │ ├── DocumentType.cs │ │ ├── Employee.cs │ │ ├── KeyValue.cs │ │ ├── Logger │ │ │ └── Logger.cs │ │ ├── MessageTemplate.cs │ │ ├── Product.cs │ │ ├── Site.cs │ │ ├── SiteConfiguration.cs │ │ ├── Tenant │ │ │ └── IMustHaveTenant.cs │ │ ├── Visitor.cs │ │ └── VisitorHistory.cs │ ├── Enums │ │ ├── AuditType.cs │ │ ├── MessageType.cs │ │ ├── PartnerType.cs │ │ ├── TrackingState.cs │ │ └── UploadType.cs │ ├── Events │ │ ├── ApprovalHistoryCreatedEvent.cs │ │ ├── ApprovalHistoryDeletedEvent.cs │ │ ├── ApprovalHistoryUpdatedEvent.cs │ │ ├── CheckinPointCreatedEvent.cs │ │ ├── CheckinPointDeletedEvent.cs │ │ ├── CheckinPointUpdatedEvent.cs │ │ ├── CreatedEvent.cs │ │ ├── CustomerCreatedEvent.cs │ │ ├── DeletedEvent.cs │ │ ├── DepartmentCreatedEvent.cs │ │ ├── DepartmentDeletedEvent.cs │ │ ├── DepartmentUpdatedEvent.cs │ │ ├── DesignationCreatedEvent.cs │ │ ├── DesignationDeletedEvent.cs │ │ ├── DesignationUpdatedEvent.cs │ │ ├── DeviceCreatedEvent.cs │ │ ├── DeviceDeletedEvent.cs │ │ ├── DeviceUpdatedEvent.cs │ │ ├── DocumentCreatedEvent.cs │ │ ├── EmployeeCreatedEvent.cs │ │ ├── EmployeeDeletedEvent.cs │ │ ├── EmployeeUpdatedEvent.cs │ │ ├── KeyValueChangedEvent.cs │ │ ├── MessageTemplateCreatedEvent.cs │ │ ├── MessageTemplateDeletedEvent.cs │ │ ├── MessageTemplateUpdatedEvent.cs │ │ ├── SiteConfigurationCreatedEvent.cs │ │ ├── SiteConfigurationDeletedEvent.cs │ │ ├── SiteConfigurationUpdatedEvent.cs │ │ ├── SiteCreatedEvent.cs │ │ ├── SiteDeletedEvent.cs │ │ ├── SiteUpdatedEvent.cs │ │ ├── UpdatedEvent.cs │ │ ├── VisitorEvents.cs │ │ ├── VisitorHistoryCreatedEvent.cs │ │ ├── VisitorHistoryDeletedEvent.cs │ │ └── VisitorHistoryUpdatedEvent.cs │ ├── Exceptions │ │ └── UnsupportedColourException.cs │ ├── ValueObjects │ │ └── Colour.cs │ └── _Imports.cs └── Infrastructure │ ├── Constants │ ├── ClaimTypes │ │ └── ApplicationClaimTypes.cs │ ├── LocalStorage │ │ └── LocalStorage.cs │ ├── Localization │ │ └── LocalizationConstants.cs │ └── Role │ │ └── RoleConstants.cs │ ├── DependencyInjection.cs │ ├── Extensions │ ├── ApplicationBuilderExtensions.cs │ ├── ClaimsPrincipalExtensions.cs │ ├── IdentityResultExtensions.cs │ └── MiddlewareExtensions.cs │ ├── Hubs │ ├── Constants.cs │ ├── HubClient.cs │ └── SignalRHub.cs │ ├── Identity │ ├── ApplicationRole.cs │ ├── ApplicationRoleClaim.cs │ ├── ApplicationUser.cs │ ├── ApplicationUserClaim.cs │ ├── ApplicationUserLogin.cs │ ├── ApplicationUserRole .cs │ └── ApplicationUserToken.cs │ ├── Infrastructure.csproj │ ├── Middlewares │ ├── ExceptionHandlingMiddleware.cs │ ├── LocalizationCookiesMiddleware.cs │ └── LocalizationMiddleware.cs │ ├── Persistence │ ├── ApplicationDbContext.cs │ ├── ApplicationDbContextSeed.cs │ ├── BlazorContextFactory.cs │ ├── Configurations │ │ ├── ApprovalHistoryConfiguration.cs │ │ ├── AuditTrailConfiguration.cs │ │ ├── CheckinPointConfiguration.cs │ │ ├── DepartmentConfiguration.cs │ │ ├── DeviceConfiguration.cs │ │ ├── DocumentConfiguration.cs │ │ ├── EmployeeConfiguration.cs │ │ ├── IdentityUserConfiguration.cs │ │ ├── KeyValueConfiguration.cs │ │ ├── MessageTemplateConfiguration.cs │ │ ├── ProductConfiguration.cs │ │ ├── SiteConfiguration.cs │ │ ├── VisitorConfiguration.cs │ │ └── VisitorHistoryConfiguration.cs │ ├── Extensions │ │ └── ModelBuilderExtensions.cs │ └── Migrations │ │ ├── 20220307111848_InitialCreate.Designer.cs │ │ ├── 20220307111848_InitialCreate.cs │ │ ├── 20220402081058_visitor.Designer.cs │ │ ├── 20220402081058_visitor.cs │ │ ├── 20220402092206_approved.Designer.cs │ │ ├── 20220402092206_approved.cs │ │ ├── 20220402235757_NucleicAcidTestReport.Designer.cs │ │ ├── 20220402235757_NucleicAcidTestReport.cs │ │ ├── 20220403000242_statusofVisitor.Designer.cs │ │ ├── 20220403000242_statusofVisitor.cs │ │ ├── 20220403055512_PassCode.Designer.cs │ │ ├── 20220403055512_PassCode.cs │ │ ├── 20220404011745_addOrg.Designer.cs │ │ ├── 20220404011745_addOrg.cs │ │ ├── 20220404023032_changeCheckinPoint.Designer.cs │ │ ├── 20220404023032_changeCheckinPoint.cs │ │ ├── 20220406032540_SiteId.Designer.cs │ │ ├── 20220406032540_SiteId.cs │ │ ├── 20220411043149_partner.Designer.cs │ │ ├── 20220411043149_partner.cs │ │ ├── 20220411044545_Companion.Designer.cs │ │ ├── 20220411044545_Companion.cs │ │ ├── 20220412124049_SurveyResponseValue.Designer.cs │ │ ├── 20220412124049_SurveyResponseValue.cs │ │ ├── 20220413010053_ApprovalHistory.Designer.cs │ │ ├── 20220413010053_ApprovalHistory.cs │ │ ├── 20220413051132_VisitorId.Designer.cs │ │ ├── 20220413051132_VisitorId.cs │ │ ├── 20220419011733_attachements.Designer.cs │ │ ├── 20220419011733_attachements.cs │ │ ├── 20220419043219_IdentificationNo.Designer.cs │ │ ├── 20220419043219_IdentificationNo.cs │ │ ├── 20220422040126_ApplicationUser.Designer.cs │ │ ├── 20220422040126_ApplicationUser.cs │ │ ├── 20220424114406_SiteConfigurations.Designer.cs │ │ ├── 20220424114406_SiteConfigurations.cs │ │ ├── 20220425233655_siteId_approvalcomment.Designer.cs │ │ ├── 20220425233655_siteId_approvalcomment.cs │ │ ├── 20220426082417_Correcttypos.Designer.cs │ │ ├── 20220426082417_Correcttypos.cs │ │ ├── 20220427111246_MessageTemplate.Designer.cs │ │ ├── 20220427111246_MessageTemplate.cs │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Services │ ├── ApplicationClaimsIdentityFactory.cs │ ├── Authentication │ │ ├── IAuthenticationService.cs │ │ ├── IdentityAuthenticationService.cs │ │ └── ProfileService.cs │ ├── CircuitHandlerService.cs │ ├── CurrentUserService.cs │ ├── DateTimeService.cs │ ├── DomainEventService.cs │ ├── ExcelService.cs │ ├── Identity │ │ ├── IdentityService.cs │ │ └── UsersStateContainer.cs │ ├── Picklist │ │ └── PicklistService.cs │ ├── SMTPMailService.cs │ ├── SendGridMailService.cs │ └── UploadService.cs │ └── _Imports.cs └── tests ├── Application.IntegrationTests ├── Application.IntegrationTests.csproj ├── DocumentTypes │ └── Commands │ │ ├── AddEditDocumentTypeTests.cs │ │ └── DeleteDocumentTypeTests.cs ├── KeyValues │ ├── Commands │ │ └── DeleteKeyValueTests.cs │ └── Queries │ │ └── KeyValuesQueryTests.cs ├── TestBase.cs ├── Testing.cs └── appsettings.json ├── Application.UnitTests ├── Application.UnitTests.csproj └── Common │ ├── Behaviours │ └── RequestLoggerTests.cs │ ├── Exceptions │ └── ValidationExceptionTests.cs │ └── Mappings │ └── MappingTests.cs └── Domain.UnitTests ├── Domain.UnitTests.csproj └── ValueObjects └── ColourTests.cs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/.gitignore -------------------------------------------------------------------------------- /CleanArchitecture.Blazor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/CleanArchitecture.Blazor.sln -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/README.md -------------------------------------------------------------------------------- /doc/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/doc/1.jpg -------------------------------------------------------------------------------- /doc/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/doc/2.jpg -------------------------------------------------------------------------------- /doc/flow_chart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/doc/flow_chart.jpg -------------------------------------------------------------------------------- /docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/docker-compose.dcproj -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /src/Application/Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Application.csproj -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/AuthorizationBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Behaviours/AuthorizationBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/CacheInvalidationBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Behaviours/CacheInvalidationBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/CachingBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Behaviours/CachingBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/DomainEventPublishingBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Behaviours/DomainEventPublishingBehavior.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/LoggingBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Behaviours/LoggingBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/PerformanceBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Behaviours/PerformanceBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/UnhandledExceptionBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Behaviours/UnhandledExceptionBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/ValidationBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Behaviours/ValidationBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Configurations/AppConfigurationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Configurations/AppConfigurationSettings.cs -------------------------------------------------------------------------------- /src/Application/Common/Configurations/DashbordSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Configurations/DashbordSettings.cs -------------------------------------------------------------------------------- /src/Application/Common/Configurations/Features.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Configurations/Features.cs -------------------------------------------------------------------------------- /src/Application/Common/Configurations/MailSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Configurations/MailSettings.cs -------------------------------------------------------------------------------- /src/Application/Common/Configurations/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Configurations/Theme.cs -------------------------------------------------------------------------------- /src/Application/Common/EventHandlers/CreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/EventHandlers/CreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Common/EventHandlers/DeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/EventHandlers/DeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Common/EventHandlers/UpdatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/EventHandlers/UpdatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/ConflictException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Exceptions/ConflictException.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/CustomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Exceptions/CustomException.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/ForbiddenAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Exceptions/ForbiddenAccessException.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/InternalServerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Exceptions/InternalServerException.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/UnauthorizedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Exceptions/UnauthorizedException.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/ValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Exceptions/ValidationException.cs -------------------------------------------------------------------------------- /src/Application/Common/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /src/Application/Common/Extensions/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Extensions/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/Application/Common/Extensions/QueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Extensions/QueryableExtensions.cs -------------------------------------------------------------------------------- /src/Application/Common/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/Application/Common/Helper/ConstantStringLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Helper/ConstantStringLocalizer.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/Caching/ICacheInvalidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/Caching/ICacheInvalidator.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/Caching/ICacheable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/Caching/ICacheable.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/IApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/ICurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/ICurrentUserService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/IDateTime.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IDictionaryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/IDictionaryService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IDomainEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/IDomainEventService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IExcelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/IExcelService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IMailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/IMailService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IPicklistService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/IPicklistService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/IResult.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/IService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/ISpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/ISpecification.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IUploadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/IUploadService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/Identity/DTOs/RefreshTokenRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/Identity/DTOs/RefreshTokenRequest.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/Identity/DTOs/TokenRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/Identity/DTOs/TokenRequest.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/Identity/DTOs/TokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/Identity/DTOs/TokenResponse.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/Identity/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/Identity/IIdentityService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/Identity/IUsersStateContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Interfaces/Identity/IUsersStateContainer.cs -------------------------------------------------------------------------------- /src/Application/Common/Mappings/IMapFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Mappings/IMapFrom.cs -------------------------------------------------------------------------------- /src/Application/Common/Mappings/MappingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Mappings/MappingExtensions.cs -------------------------------------------------------------------------------- /src/Application/Common/Mappings/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Mappings/MappingProfile.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/DomainEventNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Models/DomainEventNotification.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/FilterRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Models/FilterRule.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/MailRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Models/MailRequest.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/PaginatedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Models/PaginatedData.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/PaginatedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Models/PaginatedList.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/PaginationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Models/PaginationFilter.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/PaginationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Models/PaginationRequest.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Models/Result.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/UploadRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Models/UploadRequest.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Models/UserModel.cs -------------------------------------------------------------------------------- /src/Application/Common/PublishStrategies/ParallelNoWaitPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/PublishStrategies/ParallelNoWaitPublisher.cs -------------------------------------------------------------------------------- /src/Application/Common/Security/LoginFormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Security/LoginFormModel.cs -------------------------------------------------------------------------------- /src/Application/Common/Security/RegisterFormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Security/RegisterFormModel.cs -------------------------------------------------------------------------------- /src/Application/Common/Security/RegisterFormModelFluentValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Security/RegisterFormModelFluentValidator.cs -------------------------------------------------------------------------------- /src/Application/Common/Security/RequestAuthorizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Security/RequestAuthorizeAttribute.cs -------------------------------------------------------------------------------- /src/Application/Common/Specification/Specification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Common/Specification/Specification.cs -------------------------------------------------------------------------------- /src/Application/Constants/Button/ButtonText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Constants/Button/ButtonText.cs -------------------------------------------------------------------------------- /src/Application/Constants/Permission/PermissionModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Constants/Permission/PermissionModules.cs -------------------------------------------------------------------------------- /src/Application/Constants/Permission/Permissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Constants/Permission/Permissions.cs -------------------------------------------------------------------------------- /src/Application/Constants/Prompt/PromptText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Constants/Prompt/PromptText.cs -------------------------------------------------------------------------------- /src/Application/Constants/Toast/Toast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Constants/Toast/Toast.cs -------------------------------------------------------------------------------- /src/Application/Constants/Toast/ToastText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Constants/Toast/ToastText.cs -------------------------------------------------------------------------------- /src/Application/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/DependencyInjection.cs -------------------------------------------------------------------------------- /src/Application/Features/ApprovalHistories/Caching/ApprovalHistoryCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/ApprovalHistories/Caching/ApprovalHistoryCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/ApprovalHistories/DTOs/ApprovalHistoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/ApprovalHistories/DTOs/ApprovalHistoryDto.cs -------------------------------------------------------------------------------- /src/Application/Features/ApprovalHistories/Queries/GetAll/GetAllApprovalHistoriesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/ApprovalHistories/Queries/GetAll/GetAllApprovalHistoriesQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/AuditTrails/DTOs/AuditTrailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/AuditTrails/DTOs/AuditTrailDto.cs -------------------------------------------------------------------------------- /src/Application/Features/AuditTrails/Queries/Export/ExportAuditTrailsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/AuditTrails/Queries/Export/ExportAuditTrailsQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/CheckinPoints/Caching/CheckinPointCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/CheckinPoints/Caching/CheckinPointCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/CheckinPoints/Commands/AddEdit/AddEditCheckinPointCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/CheckinPoints/Commands/AddEdit/AddEditCheckinPointCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/CheckinPoints/Commands/Delete/DeleteCheckinPointCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/CheckinPoints/Commands/Delete/DeleteCheckinPointCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/CheckinPoints/DTOs/CheckinPointDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/CheckinPoints/DTOs/CheckinPointDto.cs -------------------------------------------------------------------------------- /src/Application/Features/CheckinPoints/EventHandlers/CheckinPointCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/CheckinPoints/EventHandlers/CheckinPointCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/CheckinPoints/EventHandlers/CheckinPointDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/CheckinPoints/EventHandlers/CheckinPointDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/CheckinPoints/EventHandlers/CheckinPointUpdatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/CheckinPoints/EventHandlers/CheckinPointUpdatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/CheckinPoints/Queries/GetAll/GetAllCheckinPointsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/CheckinPoints/Queries/GetAll/GetAllCheckinPointsQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/CheckinPoints/Queries/Pagination/CheckinPointsPaginationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/CheckinPoints/Queries/Pagination/CheckinPointsPaginationQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Departments/Caching/DepartmentCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Departments/Caching/DepartmentCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/Departments/Commands/AddEdit/AddEditDepartmentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Departments/Commands/AddEdit/AddEditDepartmentCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Departments/Commands/Delete/DeleteDepartmentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Departments/Commands/Delete/DeleteDepartmentCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Departments/Commands/Delete/DeleteDepartmentCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Departments/Commands/Delete/DeleteDepartmentCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Departments/DTOs/DepartmentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Departments/DTOs/DepartmentDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Departments/EventHandlers/DepartmentCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Departments/EventHandlers/DepartmentCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Departments/EventHandlers/DepartmentDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Departments/EventHandlers/DepartmentDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Departments/EventHandlers/DepartmentUpdatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Departments/EventHandlers/DepartmentUpdatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Departments/Queries/GetAll/GetAllDepartmentsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Departments/Queries/GetAll/GetAllDepartmentsQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Departments/Queries/Pagination/DepartmentsPaginationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Departments/Queries/Pagination/DepartmentsPaginationQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Designations/Caching/DesignationCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Designations/Caching/DesignationCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/Designations/Commands/AddEdit/AddEditDesignationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Designations/Commands/AddEdit/AddEditDesignationCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Designations/Commands/Delete/DeleteDesignationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Designations/Commands/Delete/DeleteDesignationCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Designations/DTOs/DesignationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Designations/DTOs/DesignationDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Designations/EventHandlers/DesignationCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Designations/EventHandlers/DesignationCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Designations/EventHandlers/DesignationDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Designations/EventHandlers/DesignationDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Designations/EventHandlers/DesignationUpdatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Designations/EventHandlers/DesignationUpdatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Designations/Queries/GetAll/GetAllDesignationsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Designations/Queries/GetAll/GetAllDesignationsQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Designations/Queries/Pagination/DesignationsPaginationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Designations/Queries/Pagination/DesignationsPaginationQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Devices/Caching/DeviceCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Devices/Caching/DeviceCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/Devices/Commands/AddEdit/AddEditDeviceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Devices/Commands/AddEdit/AddEditDeviceCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Devices/Commands/AddEdit/AddEditDeviceCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Devices/Commands/AddEdit/AddEditDeviceCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Devices/Commands/Delete/DeleteDeviceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Devices/Commands/Delete/DeleteDeviceCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Devices/Commands/Delete/DeleteDeviceCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Devices/Commands/Delete/DeleteDeviceCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Devices/DTOs/DeviceDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Devices/DTOs/DeviceDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Devices/EventHandlers/DeviceCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Devices/EventHandlers/DeviceCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Devices/EventHandlers/DeviceDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Devices/EventHandlers/DeviceDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Devices/EventHandlers/DeviceUpdatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Devices/EventHandlers/DeviceUpdatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Devices/Queries/GetAll/GetAllDevicesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Devices/Queries/GetAll/GetAllDevicesQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Devices/Queries/Pagination/DevicesPaginationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Devices/Queries/Pagination/DevicesPaginationQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/DocumentTypes/Caching/DocumentTypeCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/DocumentTypes/Caching/DocumentTypeCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/DocumentTypes/Commands/AddEdit/AddEditDocumentTypeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/DocumentTypes/Commands/AddEdit/AddEditDocumentTypeCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/DocumentTypes/Commands/Delete/DeleteDocumentTypeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/DocumentTypes/Commands/Delete/DeleteDocumentTypeCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/DocumentTypes/Commands/Import/ImportDocumentTypesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/DocumentTypes/Commands/Import/ImportDocumentTypesCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/DocumentTypes/DTOs/DocumentTypeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/DocumentTypes/DTOs/DocumentTypeDto.cs -------------------------------------------------------------------------------- /src/Application/Features/DocumentTypes/Queries/Export/ExportCustomersQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/DocumentTypes/Queries/Export/ExportCustomersQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/DocumentTypes/Queries/GetAll/DocumentTypesGetAllQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/DocumentTypes/Queries/GetAll/DocumentTypesGetAllQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Documents/Caching/DocumentCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Documents/Caching/DocumentCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/Documents/Commands/AddEdit/AddEditDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Documents/Commands/AddEdit/AddEditDocumentCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Documents/Commands/AddEdit/AddEditDocumentCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Documents/Commands/AddEdit/AddEditDocumentCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Documents/Commands/Delete/DeleteDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Documents/Commands/Delete/DeleteDocumentCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Documents/Commands/Delete/DeleteDocumentCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Documents/Commands/Delete/DeleteDocumentCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Documents/DTOs/DocumentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Documents/DTOs/DocumentDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Documents/EventHandlers/DocumentCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Documents/EventHandlers/DocumentCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Employees/Caching/EmployeeCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Employees/Caching/EmployeeCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/Employees/Commands/AddEdit/AddEditEmployeeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Employees/Commands/AddEdit/AddEditEmployeeCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Employees/Commands/AddEdit/AddEditEmployeeCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Employees/Commands/AddEdit/AddEditEmployeeCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Employees/Commands/Delete/DeleteEmployeeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Employees/Commands/Delete/DeleteEmployeeCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Employees/Commands/Delete/DeleteEmployeeCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Employees/Commands/Delete/DeleteEmployeeCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Employees/DTOs/EmployeeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Employees/DTOs/EmployeeDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Employees/EventHandlers/EmployeeCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Employees/EventHandlers/EmployeeCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Employees/EventHandlers/EmployeeDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Employees/EventHandlers/EmployeeDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Employees/EventHandlers/EmployeeUpdatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Employees/EventHandlers/EmployeeUpdatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Employees/Queries/GetAll/GetAllEmployeesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Employees/Queries/GetAll/GetAllEmployeesQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Employees/Queries/Pagination/EmployeesPaginationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Employees/Queries/Pagination/EmployeesPaginationQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/Caching/KeyValueCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/Caching/KeyValueCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/Commands/AddEdit/AddEditKeyValueCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/Commands/AddEdit/AddEditKeyValueCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/Commands/AddEdit/AddEditKeyValueCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/Commands/AddEdit/AddEditKeyValueCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/Commands/Delete/DeleteKeyValueCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/Commands/Delete/DeleteKeyValueCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/Commands/Delete/DeleteKeyValueCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/Commands/Delete/DeleteKeyValueCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/Commands/Import/ImportKeyValuesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/Commands/Import/ImportKeyValuesCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/Commands/Import/ImportKeyValuesCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/Commands/Import/ImportKeyValuesCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/DTOs/KeyValueDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/DTOs/KeyValueDto.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/EventHandlers/KeyValueChangedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/EventHandlers/KeyValueChangedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/Queries/ByName/KeyValuesQueryByName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/Queries/ByName/KeyValuesQueryByName.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/Queries/Export/ExportKeyValuesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/Queries/Export/ExportKeyValuesQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/KeyValues/Queries/GetAll/GetAllKeyValuesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/KeyValues/Queries/GetAll/GetAllKeyValuesQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Loggers/Caching/LogCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Loggers/Caching/LogCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/Loggers/DTOs/LogDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Loggers/DTOs/LogDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Loggers/DTOs/LogLevelChartDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Loggers/DTOs/LogLevelChartDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Loggers/DTOs/LogTimeLineDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Loggers/DTOs/LogTimeLineDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Loggers/Queries/ChatData/LogsChatDataQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Loggers/Queries/ChatData/LogsChatDataQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Loggers/Queries/Export/ExportLogsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Loggers/Queries/Export/ExportLogsQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Loggers/Queries/PaginationQuery/LogsWithPaginationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Loggers/Queries/PaginationQuery/LogsWithPaginationQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/MessageTemplates/Caching/MessageTemplateCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/MessageTemplates/Caching/MessageTemplateCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/MessageTemplates/Commands/Delete/DeleteMessageTemplateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/MessageTemplates/Commands/Delete/DeleteMessageTemplateCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/MessageTemplates/DTOs/MessageTemplateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/MessageTemplates/DTOs/MessageTemplateDto.cs -------------------------------------------------------------------------------- /src/Application/Features/MessageTemplates/Queries/GetAll/GetAllMessageTemplatesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/MessageTemplates/Queries/GetAll/GetAllMessageTemplatesQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/Caching/ProductCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/Caching/ProductCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/Commands/AddEdit/AddEditProductCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/Commands/AddEdit/AddEditProductCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/Commands/AddEdit/AddEditProductCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/Commands/AddEdit/AddEditProductCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/Commands/Delete/DeleteProductCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/Commands/Delete/DeleteProductCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/Commands/Delete/DeleteProductCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/Commands/Delete/DeleteProductCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/Commands/Import/ImportProductsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/Commands/Import/ImportProductsCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/Commands/Import/ImportProductsCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/Commands/Import/ImportProductsCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/DTOs/ProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/DTOs/ProductDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/EventHandlers/ProductCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/EventHandlers/ProductCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/EventHandlers/ProductDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/EventHandlers/ProductDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/EventHandlers/ProductUpdatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/EventHandlers/ProductUpdatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/Queries/Export/ExportProductsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/Queries/Export/ExportProductsQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/Queries/GetAll/GetAllProductsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/Queries/GetAll/GetAllProductsQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/Queries/Pagination/ProductsPaginationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/Queries/Pagination/ProductsPaginationQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Products/Queries/Specification/SearchProductSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Products/Queries/Specification/SearchProductSpecification.cs -------------------------------------------------------------------------------- /src/Application/Features/SiteConfigurations/Caching/SiteConfigurationCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/SiteConfigurations/Caching/SiteConfigurationCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/SiteConfigurations/DTOs/SiteConfigurationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/SiteConfigurations/DTOs/SiteConfigurationDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Sites/Caching/SiteCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Sites/Caching/SiteCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/Sites/Commands/AddEdit/AddEditSiteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Sites/Commands/AddEdit/AddEditSiteCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Sites/Commands/AddEdit/AddEditSiteCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Sites/Commands/AddEdit/AddEditSiteCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Sites/Commands/Delete/DeleteSiteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Sites/Commands/Delete/DeleteSiteCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Sites/Commands/Delete/DeleteSiteCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Sites/Commands/Delete/DeleteSiteCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Sites/DTOs/SiteDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Sites/DTOs/SiteDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Sites/EventHandlers/SiteCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Sites/EventHandlers/SiteCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Sites/EventHandlers/SiteDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Sites/EventHandlers/SiteDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Sites/EventHandlers/SiteUpdatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Sites/EventHandlers/SiteUpdatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Sites/Queries/GetAll/GetAllSitesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Sites/Queries/GetAll/GetAllSitesQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Sites/Queries/Pagination/SitesPaginationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Sites/Queries/Pagination/SitesPaginationQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/VisitorHistories/Caching/VisitorHistoryCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/VisitorHistories/Caching/VisitorHistoryCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/VisitorHistories/Commands/Create/CreateVisitorHistoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/VisitorHistories/Commands/Create/CreateVisitorHistoryCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/VisitorHistories/Commands/Delete/DeleteVisitorHistoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/VisitorHistories/Commands/Delete/DeleteVisitorHistoryCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/VisitorHistories/Constants/CheckStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/VisitorHistories/Constants/CheckStage.cs -------------------------------------------------------------------------------- /src/Application/Features/VisitorHistories/DTOs/VisitorHistoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/VisitorHistories/DTOs/VisitorHistoryDto.cs -------------------------------------------------------------------------------- /src/Application/Features/VisitorHistories/Queries/GetAll/GetAllVisitorHistoriesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/VisitorHistories/Queries/GetAll/GetAllVisitorHistoriesQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Caching/VisitorCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Caching/VisitorCacheKey.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/AddEdit/AddEditVisitorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/AddEdit/AddEditVisitorCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/AddEdit/AddEditVisitorCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/AddEdit/AddEditVisitorCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Approve/ApprovalVisitorsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Approve/ApprovalVisitorsCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Approve/ApprovalVisitorsCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Approve/ApprovalVisitorsCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Checking/CheckingVisitorsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Checking/CheckingVisitorsCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Checking/CheckingVisitorsCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Checking/CheckingVisitorsCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Confirm/ConfirmVisitorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Confirm/ConfirmVisitorCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Confirm/ConfirmVisitorCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Confirm/ConfirmVisitorCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Create/CreateVisitorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Create/CreateVisitorCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Create/CreateVisitorCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Create/CreateVisitorCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Create/CreateVisitorCompanionDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Create/CreateVisitorCompanionDtoValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Delete/DeleteVisitorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Delete/DeleteVisitorCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Delete/DeleteVisitorCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Delete/DeleteVisitorCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Request/VisitorRequestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Request/VisitorRequestCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Request/VisitorRequestCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Request/VisitorRequestCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Survey/UpdateVisitorSurveyResponseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Survey/UpdateVisitorSurveyResponseCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Update/UpdateVisitorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Update/UpdateVisitorCommand.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Commands/Update/UpdateVisitorCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Commands/Update/UpdateVisitorCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Constant/ApprovalOutcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Constant/ApprovalOutcome.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Constant/VisitorProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Constant/VisitorProcess.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Constant/VisitorStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Constant/VisitorStatus.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/DTOs/CompanionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/DTOs/CompanionDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/DTOs/VisitorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/DTOs/VisitorDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/DTOs/VisitorStatusSumarryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/DTOs/VisitorStatusSumarryDto.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/EventHandlers/VisitorCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/EventHandlers/VisitorCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/EventHandlers/VisitorDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/EventHandlers/VisitorDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/EventHandlers/VisitorUpdatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/EventHandlers/VisitorUpdatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Queries/GetAll/GetAllVisitorsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Queries/GetAll/GetAllVisitorsQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Queries/GetById/GetByIdVisitorQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Queries/GetById/GetByIdVisitorQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Queries/Kanban/GetKanbanDataQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Queries/Kanban/GetKanbanDataQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Queries/Pagination/VisitorsPaginationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Queries/Pagination/VisitorsPaginationQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Queries/Related/GetRelatedVisitorQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Queries/Related/GetRelatedVisitorQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Queries/Reports/GetDashboardDataQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Queries/Reports/GetDashboardDataQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Queries/Search/SearchPendingApprovalVisitorsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Queries/Search/SearchPendingApprovalVisitorsQuery.cs -------------------------------------------------------------------------------- /src/Application/Features/Visitors/Queries/Search/SearchVisitorQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Features/Visitors/Queries/Search/SearchVisitorQuery.cs -------------------------------------------------------------------------------- /src/Application/Resources/Constants/ConstantString.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Constants/ConstantString.Designer.cs -------------------------------------------------------------------------------- /src/Application/Resources/Constants/ConstantString.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Constants/ConstantString.de-DE.resx -------------------------------------------------------------------------------- /src/Application/Resources/Constants/ConstantString.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Constants/ConstantString.en.resx -------------------------------------------------------------------------------- /src/Application/Resources/Constants/ConstantString.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Constants/ConstantString.es-ES.resx -------------------------------------------------------------------------------- /src/Application/Resources/Constants/ConstantString.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Constants/ConstantString.fr-FR.resx -------------------------------------------------------------------------------- /src/Application/Resources/Constants/ConstantString.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Constants/ConstantString.ja-JP.resx -------------------------------------------------------------------------------- /src/Application/Resources/Constants/ConstantString.km-KH.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Constants/ConstantString.km-KH.resx -------------------------------------------------------------------------------- /src/Application/Resources/Constants/ConstantString.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Constants/ConstantString.resx -------------------------------------------------------------------------------- /src/Application/Resources/Constants/ConstantString.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Constants/ConstantString.ru.resx -------------------------------------------------------------------------------- /src/Application/Resources/Constants/ConstantString.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Constants/ConstantString.zh-CN.resx -------------------------------------------------------------------------------- /src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.en.resx -------------------------------------------------------------------------------- /src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.resx -------------------------------------------------------------------------------- /src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Customers/Commands/Import/ImportCustomersCommandHandler.ru.resx -------------------------------------------------------------------------------- /src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.de-DE.resx -------------------------------------------------------------------------------- /src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.en.resx -------------------------------------------------------------------------------- /src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.ja-JP.resx -------------------------------------------------------------------------------- /src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.resx -------------------------------------------------------------------------------- /src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.ru.resx -------------------------------------------------------------------------------- /src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Customers/Queries/Export/ExportCustomersQueryHandler.zh-CN.resx -------------------------------------------------------------------------------- /src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.de-DE.resx -------------------------------------------------------------------------------- /src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.en.resx -------------------------------------------------------------------------------- /src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.ja-JP.resx -------------------------------------------------------------------------------- /src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.resx -------------------------------------------------------------------------------- /src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/Documents/Queries/Export/ExportDocumentsQueryHandler.ru.resx -------------------------------------------------------------------------------- /src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/KeyValues/Commands/Import/ImportKeyValuesCommandHandler.resx -------------------------------------------------------------------------------- /src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.en.resx -------------------------------------------------------------------------------- /src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.resx -------------------------------------------------------------------------------- /src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Resources/KeyValues/Queries/Export/ExportKeyValuesQueryHandler.ru.resx -------------------------------------------------------------------------------- /src/Application/Services/Message/MailMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Services/Message/MailMessageService.cs -------------------------------------------------------------------------------- /src/Application/Services/Message/SMSMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Services/Message/SMSMessageService.cs -------------------------------------------------------------------------------- /src/Application/Services/Picklist/PicklistService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/Services/Picklist/PicklistService.cs -------------------------------------------------------------------------------- /src/Application/_Imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Application/_Imports.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/App.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Blazor.Server.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Blazor.Server.UI.csproj -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/AutoComplete/AssignSiteIdAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/AutoComplete/AssignSiteIdAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Common/CustomError.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Common/CustomError.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Common/CustomValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Common/CustomValidation.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Common/ErrorHandler.razor: -------------------------------------------------------------------------------- 1 | @inherits ErrorBoundary 2 | @ChildContent -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Common/ErrorHandler.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Common/ErrorHandler.razor.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Common/OnlineUsersComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Common/OnlineUsersComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Common/PicklistAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Common/PicklistAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Common/TablePager.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Common/TablePager.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Dialogs/DeleteConfirmation.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Dialogs/DeleteConfirmation.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Dialogs/LogoutConfirmation.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Dialogs/LogoutConfirmation.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Index/CountedMonthly.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Index/CountedMonthly.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Index/CountedPurpose.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Index/CountedPurpose.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Index/SummaryDashboard.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Index/SummaryDashboard.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Localization/LanguageSelector.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Localization/LanguageSelector.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/CommandPalette.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/CommandPalette.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/CommandPalette.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/CommandPalette.razor.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/NavMenu.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/NavMenu.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/NavMenu.razor.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/NotificationMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/NotificationMenu.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/NotificationMenu.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/NotificationMenu.razor.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/SideMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/SideMenu.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/SideMenu.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/SideMenu.razor.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/Themes/ThemesButton.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/Themes/ThemesButton.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/Themes/ThemesButton.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/Themes/ThemesButton.razor.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/Themes/ThemesMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/Themes/ThemesMenu.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/Themes/ThemesMenu.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/Themes/ThemesMenu.razor.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/UserMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/UserMenu.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Components/Shared/UserMenu.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Components/Shared/UserMenu.razor.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Models/Localization/LanguageCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Models/Localization/LanguageCode.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Models/Notification/NotificationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Models/Notification/NotificationModel.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Models/Notification/NotificationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Models/Notification/NotificationTypes.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Models/SideMenu/MenuSectionItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Models/SideMenu/MenuSectionItemModel.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Models/SideMenu/MenuSectionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Models/SideMenu/MenuSectionModel.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Models/SideMenu/MenuSectionSubItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Models/SideMenu/MenuSectionSubItemModel.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Models/SideMenu/PageStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Models/SideMenu/PageStatus.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Authentication/Forgot.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Authentication/Forgot.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Authentication/Login.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Authentication/Login.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Authentication/Register.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Authentication/Register.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Authentication/Reset.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Authentication/Reset.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/CheckinPoints/CheckinPointAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/CheckinPoints/CheckinPointAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/CheckinPoints/CheckinPointWithSiteIdAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/CheckinPoints/CheckinPointWithSiteIdAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/CheckinPoints/CheckinPoints.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/CheckinPoints/CheckinPoints.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/CheckinPoints/SiteAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/CheckinPoints/SiteAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/CheckinPoints/_CheckinPointFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/CheckinPoints/_CheckinPointFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Departments/DepartmentAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Departments/DepartmentAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Departments/Departments.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Departments/Departments.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Departments/_DepartmentFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Departments/_DepartmentFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Designations/DesignationAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Designations/DesignationAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Designations/Designations.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Designations/Designations.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Designations/_DesignationFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Designations/_DesignationFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Devices/CheckinPointAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Devices/CheckinPointAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Devices/Devices.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Devices/Devices.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Devices/_DeviceFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Devices/_DeviceFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Employees/AdvancedSearchEmployeesComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Employees/AdvancedSearchEmployeesComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Employees/DepartmentAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Employees/DepartmentAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Employees/DesignationAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Employees/DesignationAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Employees/Employees.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Employees/Employees.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Employees/_EmployeeFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Employees/_EmployeeFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Roles/PermissionsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Roles/PermissionsModel.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Roles/RoleFormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Roles/RoleFormModel.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Roles/Roles.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Roles/Roles.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Roles/_PermissionsDrawer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Roles/_PermissionsDrawer.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Roles/_RoleFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Roles/_RoleFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/AssignDepartmentAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/AssignDepartmentAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/AssignSiteAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/AssignSiteAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/Profile.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/Profile.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/ResetPasswordFormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/ResetPasswordFormModel.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/ResetPasswordFormModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/ResetPasswordFormModelValidator.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/SelectSiteAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/SelectSiteAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/UserFormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/UserFormModel.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/UserFormModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/UserFormModelValidator.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/Users.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/Users.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/_ResetPasswordDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/_ResetPasswordDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/_UserForm.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/_UserForm.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Identity/Users/_UserFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Identity/Users/_UserFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Index.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/MessageTemplates/MessageTemplates.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/MessageTemplates/MessageTemplates.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/MessageTemplates/_MessageTemplateFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/MessageTemplates/_MessageTemplateFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Products/AdvancedSearchProductsComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Products/AdvancedSearchProductsComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Products/Products.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Products/Products.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Products/_ProductFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Products/_ProductFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/SiteConfigurations/SiteConfigurations.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/SiteConfigurations/SiteConfigurations.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/SiteConfigurations/_SiteConfigurationFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/SiteConfigurations/_SiteConfigurationFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Sites/SiteAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Sites/SiteAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Sites/SiteWithAddressAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Sites/SiteWithAddressAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Sites/Sites.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Sites/Sites.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Sites/_SiteFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Sites/_SiteFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/SystemManagement/AuditTrails.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/SystemManagement/AuditTrails.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/SystemManagement/Components/LogsLineCharts.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/SystemManagement/Components/LogsLineCharts.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/SystemManagement/Dictionaries.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/SystemManagement/Dictionaries.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/SystemManagement/Logs.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/SystemManagement/Logs.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/AddEditCompanionComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/AddEditCompanionComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/AdvancedSearchVisitorsComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/AdvancedSearchVisitorsComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/Checkin.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/Checkin.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/CheckinComponent/CheckinHistoryComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/CheckinComponent/CheckinHistoryComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/CheckinComponent/CheckinViewComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/CheckinComponent/CheckinViewComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/CheckinComponent/CheckoutViewComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/CheckinComponent/CheckoutViewComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/CompanionComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/CompanionComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/Detail/Detail.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/Detail/Detail.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/Detail/DetailInfoComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/Detail/DetailInfoComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/Detail/RelatedVisitorsComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/Detail/RelatedVisitorsComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/Detail/StatusFlowComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/Detail/StatusFlowComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/Detail/VisitorHeaderComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/Detail/VisitorHeaderComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/EmployeeAutocomplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/EmployeeAutocomplete.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/Kanban/KanbanComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/Kanban/KanbanComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/MyCode.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/MyCode.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/MyPassCodeComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/MyPassCodeComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/PendingApprovalComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/PendingApprovalComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/PendingApprval.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/PendingApprval.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/PendingCheckin.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/PendingCheckin.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/PendingCheckinComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/PendingCheckinComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/PendingConfirm/PendingConfirm.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/PendingConfirm/PendingConfirm.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/PendingConfirm/PendingConfirmComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/PendingConfirm/PendingConfirmComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/PendingVisitor/CompanionInfoComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/PendingVisitor/CompanionInfoComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/PendingVisitor/CompleteVisitInfo.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/PendingVisitor/CompleteVisitInfo.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/PreRegister.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/PreRegister.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/QrCodeComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/QrCodeComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/RejectDialog/RejectConfirmDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/RejectDialog/RejectConfirmDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/UploadAvatarComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/UploadAvatarComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/UploadPhotoComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/UploadPhotoComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/ViewComponent/ActivityTableViewComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/ViewComponent/ActivityTableViewComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/ViewComponent/AttachmentsComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/ViewComponent/AttachmentsComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/ViewComponent/CompanionTableViewComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/ViewComponent/CompanionTableViewComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/ViewComponent/VisitDetailViewComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/ViewComponent/VisitDetailViewComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/ViewComponent/VisitHistoryTableViewComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/ViewComponent/VisitHistoryTableViewComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/VisitorApprovalViewComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/VisitorApprovalViewComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/VisitorCheckingViewComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/VisitorCheckingViewComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/VisitorHistories.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/VisitorHistories.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/VisitorRequest/QuickSearchVisitorsComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/VisitorRequest/QuickSearchVisitorsComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/VisitorRequest/VisitorAutocompleteComponent.razor: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | @code { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/VisitorRequest/VisitorRequest.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/VisitorRequest/VisitorRequest.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/VisitorRequest/_QuickSearchDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/VisitorRequest/_QuickSearchDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/VisitorViewComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/VisitorViewComponent.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/Visitors.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/Visitors.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/_ApprovalDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/_ApprovalDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/_CompanionDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/_CompanionDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/_PreviewDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/_PreviewDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/Visitors/_VisitorFormDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/Visitors/_VisitorFormDialog.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/_Host.cshtml -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Program.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.de-DE.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.es-ES.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.fr-FR.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.ja-JP.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.km-KH.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.km-KH.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Components/Localization/LanguageSelector.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Components/Shared/SideMenu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Components/Shared/SideMenu.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Components/Shared/SideMenu.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Components/Shared/SideMenu.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Authentication/Forgot.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Authentication/Forgot.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Authentication/Forgot.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Authentication/Forgot.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Authentication/Login.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Authentication/Login.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Authentication/Login.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Authentication/Login.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Authentication/Register.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Authentication/Register.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Authentication/Register.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Authentication/Register.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Authentication/Reset.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Authentication/Reset.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Authentication/Reset.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Authentication/Reset.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/CheckinPoints/CheckinPoints.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/CheckinPoints/CheckinPoints.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/CheckinPoints/CheckinPoints.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/CheckinPoints/CheckinPoints.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Departments/Departments.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Departments/Departments.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Departments/Departments.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Departments/Departments.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Designations/Designations.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Designations/Designations.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Designations/Designations.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Designations/Designations.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Devices/Devices.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Devices/Devices.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Devices/Devices.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Devices/Devices.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Employees/Employees.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Employees/Employees.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Employees/Employees.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Employees/Employees.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Identity/Roles/Roles.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Identity/Roles/Roles.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Identity/Roles/Roles.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Identity/Roles/Roles.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Identity/Users/Profile.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Identity/Users/Profile.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Identity/Users/Profile.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Identity/Users/Profile.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Identity/Users/Users.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Identity/Users/Users.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Identity/Users/Users.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Identity/Users/Users.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Index.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Index.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Index.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Index.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/MessageTemplates/MessageTemplates.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/MessageTemplates/MessageTemplates.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/MessageTemplates/MessageTemplates.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/MessageTemplates/MessageTemplates.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Products/Products.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Products/Products.de-DE.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Products/Products.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Products/Products.en.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Products/Products.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Products/Products.es-ES.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Products/Products.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Products/Products.fr-FR.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Products/Products.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Products/Products.ja-JP.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Products/Products.km-KH.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Products/Products.km-KH.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Products/Products.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Products/Products.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Products/Products.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Products/Products.ru.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Products/Products.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Products/Products.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/SiteConfigurations/SiteConfigurations.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/SiteConfigurations/SiteConfigurations.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/SiteConfigurations/SiteConfigurations.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/SiteConfigurations/SiteConfigurations.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Sites/Sites.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Sites/Sites.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Sites/Sites.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Sites/Sites.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/SystemManagement/AuditTrails.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/SystemManagement/AuditTrails.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/SystemManagement/AuditTrails.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/SystemManagement/AuditTrails.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/SystemManagement/Dictionaries.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/SystemManagement/Dictionaries.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/SystemManagement/Dictionaries.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/SystemManagement/Dictionaries.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/SystemManagement/Logs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/SystemManagement/Logs.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/SystemManagement/Logs.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/SystemManagement/Logs.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Visitors/VisitorHistories.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Visitors/VisitorHistories.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Visitors/VisitorHistories.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Visitors/VisitorHistories.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Visitors/Visitors.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Visitors/Visitors.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Pages/Visitors/Visitors.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Pages/Visitors/Visitors.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Shared/SharedResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Shared/SharedResource.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Resources/Shared/SharedResource.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Resources/Shared/SharedResource.zh-CN.resx -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Services/Layout/LayoutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Services/Layout/LayoutService.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Services/Navigation/IMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Services/Navigation/IMenuService.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Services/Navigation/MenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Services/Navigation/MenuService.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Services/Notifications/INotificationsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Services/Notifications/INotificationsService.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Services/Notifications/NotificationMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Services/Notifications/NotificationMessages.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Services/Notifications/NotificationsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Services/Notifications/NotificationsService.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Services/QrCodeBitmapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Services/QrCodeBitmapExtensions.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Services/UserPreferences/UserPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Services/UserPreferences/UserPreferences.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Services/UserPreferences/UserPreferencesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Services/UserPreferences/UserPreferencesService.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Shared/MainLayout.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Shared/MainLayout.razor.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Shared/MudBlazorLogo.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Shared/MudBlazorLogo.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Shared/SharedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Shared/SharedResource.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Shared/UserLoginState.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Shared/UserLoginState.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/Theme/DefaultTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/Theme/DefaultTheme.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/_Imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/_Imports.cs -------------------------------------------------------------------------------- /src/Blazor.Server.UI/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/_Imports.razor -------------------------------------------------------------------------------- /src/Blazor.Server.UI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/appsettings.json -------------------------------------------------------------------------------- /src/Blazor.Server.UI/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/libman.json -------------------------------------------------------------------------------- /src/Blazor.Server.UI/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/nav.json -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/icon-192.png -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/js/apex-chart-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/js/apex-chart-wrapper.js -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/js/gapi/auth2config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/js/gapi/auth2config.js -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/js/html5-qrcode/html5-qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/js/html5-qrcode/html5-qrcode.min.js -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/js/msal/authConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/js/msal/authConfig.js -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/js/webcam.js/src/webcam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/js/webcam.js/src/webcam.js -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/js/webcam.js/src/webcam.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/js/webcam.js/src/webcam.min.js -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/sample-data/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/sample-data/articles.json -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/sample-data/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/sample-data/avatar.png -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/sample-data/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/sample-data/notifications.json -------------------------------------------------------------------------------- /src/Blazor.Server.UI/wwwroot/sample-data/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Blazor.Server.UI/wwwroot/sample-data/weather.json -------------------------------------------------------------------------------- /src/Domain/Common/AuditableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Common/AuditableEntity.cs -------------------------------------------------------------------------------- /src/Domain/Common/DomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Common/DomainEvent.cs -------------------------------------------------------------------------------- /src/Domain/Common/IAuditTrial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Common/IAuditTrial.cs -------------------------------------------------------------------------------- /src/Domain/Common/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Common/ValueObject.cs -------------------------------------------------------------------------------- /src/Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Domain.csproj -------------------------------------------------------------------------------- /src/Domain/Entities/ApprovalHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/ApprovalHistory.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Audit/AuditTrail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Audit/AuditTrail.cs -------------------------------------------------------------------------------- /src/Domain/Entities/CheckinPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/CheckinPoint.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Companion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Companion.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Customer.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Department.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Device.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Document.cs -------------------------------------------------------------------------------- /src/Domain/Entities/DocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/DocumentType.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Employee.cs -------------------------------------------------------------------------------- /src/Domain/Entities/KeyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/KeyValue.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Logger/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Logger/Logger.cs -------------------------------------------------------------------------------- /src/Domain/Entities/MessageTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/MessageTemplate.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Product.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Site.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Site.cs -------------------------------------------------------------------------------- /src/Domain/Entities/SiteConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/SiteConfiguration.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Tenant/IMustHaveTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Tenant/IMustHaveTenant.cs -------------------------------------------------------------------------------- /src/Domain/Entities/Visitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/Visitor.cs -------------------------------------------------------------------------------- /src/Domain/Entities/VisitorHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Entities/VisitorHistory.cs -------------------------------------------------------------------------------- /src/Domain/Enums/AuditType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Enums/AuditType.cs -------------------------------------------------------------------------------- /src/Domain/Enums/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Enums/MessageType.cs -------------------------------------------------------------------------------- /src/Domain/Enums/PartnerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Enums/PartnerType.cs -------------------------------------------------------------------------------- /src/Domain/Enums/TrackingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Enums/TrackingState.cs -------------------------------------------------------------------------------- /src/Domain/Enums/UploadType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Enums/UploadType.cs -------------------------------------------------------------------------------- /src/Domain/Events/ApprovalHistoryCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/ApprovalHistoryCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/ApprovalHistoryDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/ApprovalHistoryDeletedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/ApprovalHistoryUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/ApprovalHistoryUpdatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/CheckinPointCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/CheckinPointCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/CheckinPointDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/CheckinPointDeletedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/CheckinPointUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/CheckinPointUpdatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/CreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/CreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/CustomerCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/CustomerCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/DeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/DeletedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/DepartmentCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/DepartmentCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/DepartmentDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/DepartmentDeletedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/DepartmentUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/DepartmentUpdatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/DesignationCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/DesignationCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/DesignationDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/DesignationDeletedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/DesignationUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/DesignationUpdatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/DeviceCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/DeviceCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/DeviceDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/DeviceDeletedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/DeviceUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/DeviceUpdatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/DocumentCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/DocumentCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/EmployeeCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/EmployeeCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/EmployeeDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/EmployeeDeletedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/EmployeeUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/EmployeeUpdatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/KeyValueChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/KeyValueChangedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/MessageTemplateCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/MessageTemplateCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/MessageTemplateDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/MessageTemplateDeletedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/MessageTemplateUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/MessageTemplateUpdatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/SiteConfigurationCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/SiteConfigurationCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/SiteConfigurationDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/SiteConfigurationDeletedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/SiteConfigurationUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/SiteConfigurationUpdatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/SiteCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/SiteCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/SiteDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/SiteDeletedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/SiteUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/SiteUpdatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/UpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/UpdatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/VisitorEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/VisitorEvents.cs -------------------------------------------------------------------------------- /src/Domain/Events/VisitorHistoryCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/VisitorHistoryCreatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/VisitorHistoryDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/VisitorHistoryDeletedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Events/VisitorHistoryUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Events/VisitorHistoryUpdatedEvent.cs -------------------------------------------------------------------------------- /src/Domain/Exceptions/UnsupportedColourException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/Exceptions/UnsupportedColourException.cs -------------------------------------------------------------------------------- /src/Domain/ValueObjects/Colour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/ValueObjects/Colour.cs -------------------------------------------------------------------------------- /src/Domain/_Imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Domain/_Imports.cs -------------------------------------------------------------------------------- /src/Infrastructure/Constants/ClaimTypes/ApplicationClaimTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Constants/ClaimTypes/ApplicationClaimTypes.cs -------------------------------------------------------------------------------- /src/Infrastructure/Constants/LocalStorage/LocalStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Constants/LocalStorage/LocalStorage.cs -------------------------------------------------------------------------------- /src/Infrastructure/Constants/Localization/LocalizationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Constants/Localization/LocalizationConstants.cs -------------------------------------------------------------------------------- /src/Infrastructure/Constants/Role/RoleConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Constants/Role/RoleConstants.cs -------------------------------------------------------------------------------- /src/Infrastructure/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/DependencyInjection.cs -------------------------------------------------------------------------------- /src/Infrastructure/Extensions/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Extensions/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Extensions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Extensions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Extensions/IdentityResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Extensions/IdentityResultExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Extensions/MiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Extensions/MiddlewareExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Hubs/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Hubs/Constants.cs -------------------------------------------------------------------------------- /src/Infrastructure/Hubs/HubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Hubs/HubClient.cs -------------------------------------------------------------------------------- /src/Infrastructure/Hubs/SignalRHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Hubs/SignalRHub.cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/ApplicationRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Identity/ApplicationRole.cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/ApplicationRoleClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Identity/ApplicationRoleClaim.cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Identity/ApplicationUser.cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/ApplicationUserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Identity/ApplicationUserClaim.cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/ApplicationUserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Identity/ApplicationUserLogin.cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/ApplicationUserRole .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Identity/ApplicationUserRole .cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/ApplicationUserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Identity/ApplicationUserToken.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Infrastructure.csproj -------------------------------------------------------------------------------- /src/Infrastructure/Middlewares/ExceptionHandlingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Middlewares/ExceptionHandlingMiddleware.cs -------------------------------------------------------------------------------- /src/Infrastructure/Middlewares/LocalizationCookiesMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Middlewares/LocalizationCookiesMiddleware.cs -------------------------------------------------------------------------------- /src/Infrastructure/Middlewares/LocalizationMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Middlewares/LocalizationMiddleware.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/ApplicationDbContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/ApplicationDbContextSeed.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/BlazorContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/BlazorContextFactory.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/ApprovalHistoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/ApprovalHistoryConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/AuditTrailConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/AuditTrailConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/CheckinPointConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/CheckinPointConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/DepartmentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/DepartmentConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/DeviceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/DeviceConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/DocumentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/DocumentConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/EmployeeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/EmployeeConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/IdentityUserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/IdentityUserConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/KeyValueConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/KeyValueConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/MessageTemplateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/MessageTemplateConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/ProductConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/ProductConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/SiteConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/SiteConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/VisitorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/VisitorConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Configurations/VisitorHistoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Configurations/VisitorHistoryConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Extensions/ModelBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Extensions/ModelBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220307111848_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220307111848_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220307111848_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220307111848_InitialCreate.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220402081058_visitor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220402081058_visitor.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220402081058_visitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220402081058_visitor.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220402092206_approved.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220402092206_approved.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220402092206_approved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220402092206_approved.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220402235757_NucleicAcidTestReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220402235757_NucleicAcidTestReport.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220403000242_statusofVisitor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220403000242_statusofVisitor.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220403000242_statusofVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220403000242_statusofVisitor.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220403055512_PassCode.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220403055512_PassCode.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220403055512_PassCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220403055512_PassCode.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220404011745_addOrg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220404011745_addOrg.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220404011745_addOrg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220404011745_addOrg.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220404023032_changeCheckinPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220404023032_changeCheckinPoint.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220406032540_SiteId.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220406032540_SiteId.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220406032540_SiteId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220406032540_SiteId.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220411043149_partner.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220411043149_partner.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220411043149_partner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220411043149_partner.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220411044545_Companion.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220411044545_Companion.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220411044545_Companion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220411044545_Companion.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220412124049_SurveyResponseValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220412124049_SurveyResponseValue.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220413010053_ApprovalHistory.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220413010053_ApprovalHistory.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220413010053_ApprovalHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220413010053_ApprovalHistory.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220413051132_VisitorId.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220413051132_VisitorId.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220413051132_VisitorId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220413051132_VisitorId.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220419011733_attachements.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220419011733_attachements.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220419011733_attachements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220419011733_attachements.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220419043219_IdentificationNo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220419043219_IdentificationNo.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220419043219_IdentificationNo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220419043219_IdentificationNo.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220422040126_ApplicationUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220422040126_ApplicationUser.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220422040126_ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220422040126_ApplicationUser.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220424114406_SiteConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220424114406_SiteConfigurations.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220425233655_siteId_approvalcomment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220425233655_siteId_approvalcomment.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220426082417_Correcttypos.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220426082417_Correcttypos.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220426082417_Correcttypos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220426082417_Correcttypos.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220427111246_MessageTemplate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220427111246_MessageTemplate.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220427111246_MessageTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/20220427111246_MessageTemplate.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Persistence/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/ApplicationClaimsIdentityFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/ApplicationClaimsIdentityFactory.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/Authentication/IAuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/Authentication/IAuthenticationService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/Authentication/IdentityAuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/Authentication/IdentityAuthenticationService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/Authentication/ProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/Authentication/ProfileService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/CircuitHandlerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/CircuitHandlerService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/CurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/CurrentUserService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/DateTimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/DateTimeService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/DomainEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/DomainEventService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/ExcelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/ExcelService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/Identity/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/Identity/IdentityService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/Identity/UsersStateContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/Identity/UsersStateContainer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/Picklist/PicklistService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/Picklist/PicklistService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/SMTPMailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/SMTPMailService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/SendGridMailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/SendGridMailService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/UploadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/Services/UploadService.cs -------------------------------------------------------------------------------- /src/Infrastructure/_Imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/src/Infrastructure/_Imports.cs -------------------------------------------------------------------------------- /tests/Application.IntegrationTests/Application.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.IntegrationTests/Application.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests/Application.IntegrationTests/DocumentTypes/Commands/AddEditDocumentTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.IntegrationTests/DocumentTypes/Commands/AddEditDocumentTypeTests.cs -------------------------------------------------------------------------------- /tests/Application.IntegrationTests/DocumentTypes/Commands/DeleteDocumentTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.IntegrationTests/DocumentTypes/Commands/DeleteDocumentTypeTests.cs -------------------------------------------------------------------------------- /tests/Application.IntegrationTests/KeyValues/Commands/DeleteKeyValueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.IntegrationTests/KeyValues/Commands/DeleteKeyValueTests.cs -------------------------------------------------------------------------------- /tests/Application.IntegrationTests/KeyValues/Queries/KeyValuesQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.IntegrationTests/KeyValues/Queries/KeyValuesQueryTests.cs -------------------------------------------------------------------------------- /tests/Application.IntegrationTests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.IntegrationTests/TestBase.cs -------------------------------------------------------------------------------- /tests/Application.IntegrationTests/Testing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.IntegrationTests/Testing.cs -------------------------------------------------------------------------------- /tests/Application.IntegrationTests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.IntegrationTests/appsettings.json -------------------------------------------------------------------------------- /tests/Application.UnitTests/Application.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.UnitTests/Application.UnitTests.csproj -------------------------------------------------------------------------------- /tests/Application.UnitTests/Common/Behaviours/RequestLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.UnitTests/Common/Behaviours/RequestLoggerTests.cs -------------------------------------------------------------------------------- /tests/Application.UnitTests/Common/Exceptions/ValidationExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.UnitTests/Common/Exceptions/ValidationExceptionTests.cs -------------------------------------------------------------------------------- /tests/Application.UnitTests/Common/Mappings/MappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Application.UnitTests/Common/Mappings/MappingTests.cs -------------------------------------------------------------------------------- /tests/Domain.UnitTests/Domain.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Domain.UnitTests/Domain.UnitTests.csproj -------------------------------------------------------------------------------- /tests/Domain.UnitTests/ValueObjects/ColourTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neozhu/visitormanagement/HEAD/tests/Domain.UnitTests/ValueObjects/ColourTests.cs --------------------------------------------------------------------------------