├── .gitignore ├── AssemblyInfoUpdate ├── AssemblyInfoUpdate.csproj ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── DotNetZip ├── Contents.txt ├── DotNetZip-v1.9-CompactFramework │ ├── Debug │ │ ├── Ionic.Zip.CF.XML │ │ ├── Ionic.Zip.CF.dll │ │ └── Ionic.Zip.CF.pdb │ ├── Readme.txt │ └── Release │ │ └── Ionic.Zip.CF.dll ├── DotNetZip-v1.9 │ ├── Debug │ │ ├── Ionic.Zip.XML │ │ ├── Ionic.Zip.dll │ │ └── Ionic.Zip.pdb │ ├── Readme.txt │ └── Release │ │ └── Ionic.Zip.dll ├── DotNetZipLib-v1.9.chm ├── License.txt ├── PleaseDonate.txt ├── Readme.txt ├── Zlib-v1.9-CompactFramework │ ├── Debug │ │ ├── Ionic.Zlib.CF.XML │ │ ├── Ionic.Zlib.CF.dll │ │ └── Ionic.Zlib.CF.pdb │ ├── Readme.txt │ └── Release │ │ └── Ionic.Zlib.CF.dll └── Zlib-v1.9 │ ├── Debug │ ├── Ionic.Zlib.XML │ ├── Ionic.Zlib.dll │ └── Ionic.Zlib.pdb │ ├── Readme.txt │ └── Release │ └── Ionic.Zlib.dll ├── Ionic ├── Ionic.Zip.dll ├── Ionic.Zip.pdb ├── Ionic.Zip.xml ├── Ionic.Zlib.dll ├── Ionic.Zlib.pdb └── Ionic.Zlib.xml ├── LICENSE ├── PosControls ├── ActionNotificationControl.xaml ├── ActionNotificationControl.xaml.cs ├── BrushSelectBox.xaml ├── BrushSelectBox.xaml.cs ├── BrushSelectBoxMenu.xaml ├── BrushSelectBoxMenu.xaml.cs ├── ConfigurationManager.BrushWrapper.cs ├── ConfigurationManager.cs ├── CustomTextBox.xaml ├── CustomTextBox.xaml.cs ├── DateEditControl.xaml ├── DateEditControl.xaml.cs ├── DateEntryControl.xaml ├── DateEntryControl.xaml.cs ├── DateEntryDateControl.xaml ├── DateEntryDateControl.xaml.cs ├── DateEntryDayControl.xaml ├── DateEntryDayControl.xaml.cs ├── DateEntryMonthControl.xaml ├── DateEntryMonthControl.xaml.cs ├── DateEntryYearControl.xaml ├── DateEntryYearControl.xaml.cs ├── DateTimeComboControl.xaml ├── DateTimeComboControl.xaml.cs ├── DateTimeEditControl.xaml ├── DateTimeEditControl.xaml.cs ├── DialogBoxControl.xaml ├── DialogBoxControl.xaml.cs ├── DragScrollListBox.cs ├── DragScrollViewer.cs ├── FileBrowserControl.xaml ├── FileBrowserControl.xaml.cs ├── FileBrowserItemControl.xaml ├── FileBrowserItemControl.xaml.cs ├── FormattedListBoxItem.xaml ├── FormattedListBoxItem.xaml.cs ├── GifImage.cs ├── GradientBrushEditorControl.xaml ├── GradientBrushEditorControl.xaml.cs ├── GradientStopEditorControl.xaml ├── GradientStopEditorControl.xaml.cs ├── Helpers │ ├── Logger.cs │ ├── MathHelper.cs │ ├── PosControlExtenstions.cs │ ├── StringHelper.cs │ └── WindowHelper.cs ├── ImageBrushEditorControl.xaml ├── ImageBrushEditorControl.xaml.cs ├── Interfaces │ ├── ISelectable.cs │ └── IShadeable.cs ├── InternetMapViewerControl.xaml ├── InternetMapViewerControl.xaml.cs ├── KeyboardEntryControl.xaml ├── KeyboardEntryControl.xaml.cs ├── LineGraph.xaml ├── LineGraph.xaml.cs ├── NumberEntryControl.xaml ├── NumberEntryControl.xaml.cs ├── PhoneNumberEditControl.xaml ├── PhoneNumberEditControl.xaml.cs ├── PosControls.csproj ├── PosDialogWindow.xaml ├── PosDialogWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PushCheckBox.xaml ├── PushCheckBox.xaml.cs ├── PushComboBox.xaml ├── PushComboBox.xaml.cs ├── PushRadioButton.xaml ├── PushRadioButton.xaml.cs ├── Resources │ └── PosControlsResourceDictionary.xaml ├── ShadingAdorner.cs ├── SolidColorBrushEditorControl.xaml ├── SolidColorBrushEditorControl.xaml.cs ├── StartDateEndDateControl.xaml ├── StartDateEndDateControl.xaml.cs ├── TabControl.xaml ├── TabControl.xaml.cs ├── TextBlockButton.xaml ├── TextBlockButton.xaml.cs ├── TimeEditControl.xaml ├── TimeEditControl.xaml.cs ├── TimeEntryClockControl.cs ├── TimeEntryControl.xaml ├── TimeEntryControl.xaml.cs ├── TimeEntryTimeControl.xaml ├── TimeEntryTimeControl.xaml.cs ├── Types │ ├── CustomTextBoxType.cs │ └── ToppingStateType.cs ├── WebBrowserHostControl.xaml └── WebBrowserHostControl.xaml.cs ├── PosModels ├── BarRecipe.cs ├── Category.cs ├── Coupon.cs ├── CouponCategory.cs ├── CouponItem.cs ├── CreditCardInfo.cs ├── Customer.cs ├── DayOfOperation.cs ├── DeliveryArea.cs ├── DeliveryDriver.cs ├── DeliveryRestriction.cs ├── DirectDeposit.cs ├── DirectDepositTransaction.cs ├── Discount.cs ├── Employee.cs ├── EmployeeAvailability.cs ├── EmployeeCheck.cs ├── EmployeeJob.cs ├── EmployeePayRate.cs ├── EmployeeSchedule.cs ├── EmployeeSetting.cs ├── EmployeeStatus.cs ├── EmployeeTimesheet.cs ├── EmployeeTimesheetChangeLog.cs ├── GiftCard.cs ├── Helpers │ ├── Bit.cs │ ├── Fingerprint.cs │ ├── MathHelper.cs │ ├── PosModelHelper.cs │ └── UnitConversion.cs ├── Ingredient.cs ├── IngredientAdjustment.cs ├── IngredientSet.cs ├── Item.cs ├── ItemAdjustment.cs ├── ItemGroup.cs ├── ItemIngredient.cs ├── ItemIngredientAdjustment.cs ├── ItemOption.cs ├── ItemOptionAdjustment.cs ├── ItemOptionSet.cs ├── ItemPricing.cs ├── ItemPricingChangeLog.cs ├── LocalSetting.cs ├── Lock.cs ├── MailingAddress.cs ├── Managers │ ├── DatabaseManager.cs │ ├── EmployeeManager.cs │ ├── PersonManager.cs │ ├── PhoneNumberManager.cs │ ├── SeatingManager.cs │ ├── SettingManager.cs │ └── TicketManager.cs ├── Party.cs ├── PartyInvite.cs ├── Person.cs ├── PhoneNumber.cs ├── PosModels.csproj ├── PrintOption.cs ├── PrintOptionSet.cs ├── Printer.cs ├── Product.cs ├── Properties │ └── AssemblyInfo.cs ├── RegisterDeposit.cs ├── RegisterDrawer.cs ├── RegisterDrop.cs ├── RegisterMove.cs ├── RegisterNoSale.cs ├── RegisterPayout.cs ├── Rental.cs ├── RentalOccurance.cs ├── Room.cs ├── Seating.cs ├── SeatingReservation.cs ├── SerialObject.cs ├── StoreSetting.cs ├── Tax.cs ├── Ticket.cs ├── TicketCoupon.cs ├── TicketDelivery.cs ├── TicketDiscount.cs ├── TicketItem.cs ├── TicketItemOption.cs ├── TicketItemReturn.cs ├── TicketPayment.cs ├── TicketRefund.cs ├── TicketVoid.cs ├── Types │ ├── BankAccountType.cs │ ├── CancelType.cs │ ├── CommonConnection.cs │ ├── DataModelBase.cs │ ├── Days.cs │ ├── ItemAdjustmentType.cs │ ├── ItemOptionAdjustmentType.cs │ ├── Languages.cs │ ├── MeasurementUnit.cs │ ├── ModeledDataAttribute.cs │ ├── ModeledDataClassAttribute.cs │ ├── ModeledDataNullableAttribute.cs │ ├── ModeledDataTypeAttribute.cs │ ├── Month.cs │ ├── PaymentSource.cs │ ├── Permissions.cs │ ├── PrintDestinations.cs │ ├── Strings.cs │ ├── StringsCore.cs │ ├── TableName.cs │ ├── TemperatureScale.cs │ ├── TicketItemOptionType.cs │ ├── TicketRefundType.cs │ ├── TicketType.cs │ └── YearId.cs ├── Vendor.cs ├── VendorItem.cs ├── VendorOrder.cs ├── VendorOrderItem.cs ├── ZipCode.cs ├── ZipCodeCity.cs └── ZipCodeState.cs ├── QRCodeLib ├── AESHelper.cs ├── AssemblyInfo.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resources │ └── Resources.resx ├── QRCode.NET.gpState ├── QRCode.NET.xml ├── QRCodeDecoder.cs ├── QRCodeEncoder.cs ├── QRCodeLib.csproj ├── QRCodeLib.csproj.user ├── QRCodeNET.gpState ├── Resources │ ├── qrv10_0.dat │ ├── qrv10_1.dat │ ├── qrv10_2.dat │ ├── qrv10_3.dat │ ├── qrv11_0.dat │ ├── qrv11_1.dat │ ├── qrv11_2.dat │ ├── qrv11_3.dat │ ├── qrv12_0.dat │ ├── qrv12_1.dat │ ├── qrv12_2.dat │ ├── qrv12_3.dat │ ├── qrv13_0.dat │ ├── qrv13_1.dat │ ├── qrv13_2.dat │ ├── qrv13_3.dat │ ├── qrv14_0.dat │ ├── qrv14_1.dat │ ├── qrv14_2.dat │ ├── qrv14_3.dat │ ├── qrv15_0.dat │ ├── qrv15_1.dat │ ├── qrv15_2.dat │ ├── qrv15_3.dat │ ├── qrv16_0.dat │ ├── qrv16_1.dat │ ├── qrv16_2.dat │ ├── qrv16_3.dat │ ├── qrv17_0.dat │ ├── qrv17_1.dat │ ├── qrv17_2.dat │ ├── qrv17_3.dat │ ├── qrv18_0.dat │ ├── qrv18_1.dat │ ├── qrv18_2.dat │ ├── qrv18_3.dat │ ├── qrv19_0.dat │ ├── qrv19_1.dat │ ├── qrv19_2.dat │ ├── qrv19_3.dat │ ├── qrv1_0.dat │ ├── qrv1_1.dat │ ├── qrv1_2.dat │ ├── qrv1_3.dat │ ├── qrv20_0.dat │ ├── qrv20_1.dat │ ├── qrv20_2.dat │ ├── qrv20_3.dat │ ├── qrv21_0.dat │ ├── qrv21_1.dat │ ├── qrv21_2.dat │ ├── qrv21_3.dat │ ├── qrv22_0.dat │ ├── qrv22_1.dat │ ├── qrv22_2.dat │ ├── qrv22_3.dat │ ├── qrv23_0.dat │ ├── qrv23_1.dat │ ├── qrv23_2.dat │ ├── qrv23_3.dat │ ├── qrv24_0.dat │ ├── qrv24_1.dat │ ├── qrv24_2.dat │ ├── qrv24_3.dat │ ├── qrv25_0.dat │ ├── qrv25_1.dat │ ├── qrv25_2.dat │ ├── qrv25_3.dat │ ├── qrv26_0.dat │ ├── qrv26_1.dat │ ├── qrv26_2.dat │ ├── qrv26_3.dat │ ├── qrv27_0.dat │ ├── qrv27_1.dat │ ├── qrv27_2.dat │ ├── qrv27_3.dat │ ├── qrv28_0.dat │ ├── qrv28_1.dat │ ├── qrv28_2.dat │ ├── qrv28_3.dat │ ├── qrv29_0.dat │ ├── qrv29_1.dat │ ├── qrv29_2.dat │ ├── qrv29_3.dat │ ├── qrv2_0.dat │ ├── qrv2_1.dat │ ├── qrv2_2.dat │ ├── qrv2_3.dat │ ├── qrv30_0.dat │ ├── qrv30_1.dat │ ├── qrv30_2.dat │ ├── qrv30_3.dat │ ├── qrv31_0.dat │ ├── qrv31_1.dat │ ├── qrv31_2.dat │ ├── qrv31_3.dat │ ├── qrv32_0.dat │ ├── qrv32_1.dat │ ├── qrv32_2.dat │ ├── qrv32_3.dat │ ├── qrv33_0.dat │ ├── qrv33_1.dat │ ├── qrv33_2.dat │ ├── qrv33_3.dat │ ├── qrv34_0.dat │ ├── qrv34_1.dat │ ├── qrv34_2.dat │ ├── qrv34_3.dat │ ├── qrv35_0.dat │ ├── qrv35_1.dat │ ├── qrv35_2.dat │ ├── qrv35_3.dat │ ├── qrv36_0.dat │ ├── qrv36_1.dat │ ├── qrv36_2.dat │ ├── qrv36_3.dat │ ├── qrv37_0.dat │ ├── qrv37_1.dat │ ├── qrv37_2.dat │ ├── qrv37_3.dat │ ├── qrv38_0.dat │ ├── qrv38_1.dat │ ├── qrv38_2.dat │ ├── qrv38_3.dat │ ├── qrv39_0.dat │ ├── qrv39_1.dat │ ├── qrv39_2.dat │ ├── qrv39_3.dat │ ├── qrv3_0.dat │ ├── qrv3_1.dat │ ├── qrv3_2.dat │ ├── qrv3_3.dat │ ├── qrv40_0.dat │ ├── qrv40_1.dat │ ├── qrv40_2.dat │ ├── qrv40_3.dat │ ├── qrv4_0.dat │ ├── qrv4_1.dat │ ├── qrv4_2.dat │ ├── qrv4_3.dat │ ├── qrv5_0.dat │ ├── qrv5_1.dat │ ├── qrv5_2.dat │ ├── qrv5_3.dat │ ├── qrv6_0.dat │ ├── qrv6_1.dat │ ├── qrv6_2.dat │ ├── qrv6_3.dat │ ├── qrv7_0.dat │ ├── qrv7_1.dat │ ├── qrv7_2.dat │ ├── qrv7_3.dat │ ├── qrv8_0.dat │ ├── qrv8_1.dat │ ├── qrv8_2.dat │ ├── qrv8_3.dat │ ├── qrv9_0.dat │ ├── qrv9_1.dat │ ├── qrv9_2.dat │ ├── qrv9_3.dat │ ├── qrvfr1.dat │ ├── qrvfr10.dat │ ├── qrvfr11.dat │ ├── qrvfr12.dat │ ├── qrvfr13.dat │ ├── qrvfr14.dat │ ├── qrvfr15.dat │ ├── qrvfr16.dat │ ├── qrvfr17.dat │ ├── qrvfr18.dat │ ├── qrvfr19.dat │ ├── qrvfr2.dat │ ├── qrvfr20.dat │ ├── qrvfr21.dat │ ├── qrvfr22.dat │ ├── qrvfr23.dat │ ├── qrvfr24.dat │ ├── qrvfr25.dat │ ├── qrvfr26.dat │ ├── qrvfr27.dat │ ├── qrvfr28.dat │ ├── qrvfr29.dat │ ├── qrvfr3.dat │ ├── qrvfr30.dat │ ├── qrvfr31.dat │ ├── qrvfr32.dat │ ├── qrvfr33.dat │ ├── qrvfr34.dat │ ├── qrvfr35.dat │ ├── qrvfr36.dat │ ├── qrvfr37.dat │ ├── qrvfr38.dat │ ├── qrvfr39.dat │ ├── qrvfr4.dat │ ├── qrvfr40.dat │ ├── qrvfr5.dat │ ├── qrvfr6.dat │ ├── qrvfr7.dat │ ├── qrvfr8.dat │ ├── qrvfr9.dat │ ├── rsc10.dat │ ├── rsc13.dat │ ├── rsc15.dat │ ├── rsc16.dat │ ├── rsc17.dat │ ├── rsc18.dat │ ├── rsc20.dat │ ├── rsc22.dat │ ├── rsc24.dat │ ├── rsc26.dat │ ├── rsc28.dat │ ├── rsc30.dat │ ├── rsc32.dat │ ├── rsc34.dat │ ├── rsc36.dat │ ├── rsc40.dat │ ├── rsc42.dat │ ├── rsc44.dat │ ├── rsc46.dat │ ├── rsc48.dat │ ├── rsc50.dat │ ├── rsc52.dat │ ├── rsc54.dat │ ├── rsc56.dat │ ├── rsc58.dat │ ├── rsc60.dat │ ├── rsc62.dat │ ├── rsc64.dat │ ├── rsc66.dat │ ├── rsc68.dat │ └── rsc7.dat ├── ThoughtWorks.QRCode.dll ├── ThoughtWorks.QRCode.gpState ├── ThoughtWorks.QRCode.pdb ├── ThoughtWorks.QRCode.sln ├── ThoughtWorks.QRCode.suo ├── data │ ├── QRCodeBitmapImage.cs │ ├── QRCodeImage.cs │ └── QRCodeSymbol.cs ├── ecc │ ├── BCH15_5.cs │ └── ReedSolomon.cs ├── exception │ ├── AlignmentPatternNotFoundException.cs │ ├── DecodingFailedException.cs │ ├── FinderPatternNotFoundException.cs │ ├── InvalidDataBlockException.cs │ ├── InvalidVersionException.cs │ ├── InvalidVersionInfoException.cs │ ├── SymbolNotFoundException.cs │ └── VersionInformationException.cs ├── geom │ ├── Axis.cs │ ├── Line.cs │ ├── Point.cs │ └── SamplingGrid.cs ├── qrcode.bmp ├── qrcode.jpg ├── qrcode.png ├── reader │ ├── QRCodeDataBlockReader.cs │ ├── QRCodeImageReader.cs │ └── pattern │ │ ├── AlignmentPattern.cs │ │ ├── FinderPattern.cs │ │ └── LogicalSeed.cs └── util │ ├── Color.cs │ ├── ConsoleCanvas.cs │ ├── ContentConverter.cs │ ├── DebugCanvas.cs │ ├── DebugCanvasAdapter.cs │ ├── QRCodeUtility.cs │ └── SystemUtils.cs ├── README.md ├── SQL Procedures ├── DatabaseHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── SQL Procedures.csproj └── TicketItem.cs ├── TaskManagerAccessService ├── PipeServer.cs ├── Program.cs ├── ProjectInstaller.Designer.cs ├── ProjectInstaller.cs ├── ProjectInstaller.resx ├── Properties │ └── AssemblyInfo.cs ├── TaskManagerAccessService.csproj ├── TaskManagerHandlerService.Designer.cs ├── TaskManagerHandlerService.cs └── TextEvent.cs ├── TaskManagerAccessServiceUninstaller ├── PipeClient.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TaskManagerAccessServiceUninstaller.csproj └── VistaSecurity.cs ├── TemPOS ├── App.xaml ├── App.xaml.cs ├── ButtonTouchCommandInput.xaml ├── ButtonTouchCommandInput.xaml.cs ├── CancelMadeUnmadeControl.xaml ├── CancelMadeUnmadeControl.xaml.cs ├── CategoryEditorControl.xaml ├── CategoryEditorControl.xaml.cs ├── ChangePasswordControl.xaml ├── ChangePasswordControl.xaml.cs ├── CommandShellControl.xaml ├── CommandShellControl.xaml.cs ├── Commands │ ├── CommandBase.cs │ └── OrderEntryCommands.cs ├── CouponCategorySelectionControl.xaml ├── CouponCategorySelectionControl.xaml.cs ├── CouponEditorControl.xaml ├── CouponEditorControl.xaml.cs ├── CouponEditorDetailsControl.xaml ├── CouponEditorDetailsControl.xaml.cs ├── CouponItemSelectionControl.xaml ├── CouponItemSelectionControl.xaml.cs ├── CouponMaintenanceControl.xaml ├── CouponMaintenanceControl.xaml.cs ├── CustomerEditorControl.xaml ├── CustomerEditorControl.xaml.cs ├── CustomerMaintenanceControl.xaml ├── CustomerMaintenanceControl.xaml.cs ├── DayOfOperationRangeSelectionControl.xaml ├── DayOfOperationRangeSelectionControl.xaml.cs ├── DeliveryEditorControl.xaml ├── DeliveryEditorControl.xaml.cs ├── DeliveryMaintenanceControl.xaml ├── DeliveryMaintenanceControl.xaml.cs ├── DeviceChoiceControl.xaml ├── DeviceChoiceControl.xaml.cs ├── DeviceSelectionControl.xaml ├── DeviceSelectionControl.xaml.cs ├── DeviceSelectionDetails.xaml ├── DeviceSelectionDetails.xaml.cs ├── DiscountEditorControl.xaml ├── DiscountEditorControl.xaml.cs ├── DiscountMaintenanceControl.xaml ├── DiscountMaintenanceControl.xaml.cs ├── EmployeeClockInControl.xaml ├── EmployeeClockInControl.xaml.cs ├── EmployeeClockOutControl.xaml ├── EmployeeClockOutControl.xaml.cs ├── EmployeeEditorControl.xaml ├── EmployeeEditorControl.xaml.cs ├── EmployeeEditorDetailsControl.xaml ├── EmployeeEditorDetailsControl.xaml.cs ├── EmployeeEditorDirectDepositControl.xaml ├── EmployeeEditorDirectDepositControl.xaml.cs ├── EmployeeJobEditorControl.xaml ├── EmployeeJobEditorControl.xaml.cs ├── EmployeeJobMaintenanceControl.xaml ├── EmployeeJobMaintenanceControl.xaml.cs ├── EmployeeJobSelectionControl.xaml ├── EmployeeJobSelectionControl.xaml.cs ├── EmployeeScheduleEditorControl.xaml ├── EmployeeScheduleEditorControl.xaml.cs ├── EmployeeScheduleMaintenanceControl.xaml ├── EmployeeScheduleMaintenanceControl.xaml.cs ├── EventHandlers │ ├── ButtonTouchInputClickEvent.cs │ ├── CancelableEvent.cs │ ├── CategoryValueChangedEvent.cs │ ├── CommandEvent.cs │ ├── CouponValueChangedEvent.cs │ ├── ItemOptionValueChangedEvent.cs │ ├── ItemTaxValueChangedEvent.cs │ ├── ItemValueChangedEvent.cs │ └── UserLoginEvent.cs ├── Exceptions │ └── WtfException.cs ├── ExitControl.xaml ├── ExitControl.xaml.cs ├── FutureTimeEditControl.xaml ├── FutureTimeEditControl.xaml.cs ├── GeneralSettingsBrushSetupControl.xaml ├── GeneralSettingsBrushSetupControl.xaml.cs ├── GeneralSettingsControl.xaml ├── GeneralSettingsControl.xaml.cs ├── GeneralSettingsGeneralPreferencesControl.xaml ├── GeneralSettingsGeneralPreferencesControl.xaml.cs ├── GeneralSettingsOperationalPreferencesControl.xaml ├── GeneralSettingsOperationalPreferencesControl.xaml.cs ├── GeneralSettingsStoreSettingsControl.xaml ├── GeneralSettingsStoreSettingsControl.xaml.cs ├── GeneralSettingsUpdateControl.xaml ├── GeneralSettingsUpdateControl.xaml.cs ├── GiftCardMaintenanceControl.xaml ├── GiftCardMaintenanceControl.xaml.cs ├── Helpers │ ├── Logger.cs │ ├── ManagerAlert.cs │ ├── PosHelper.cs │ ├── RegistryHelper.cs │ ├── ServiceHelper.cs │ ├── Silencer.cs │ ├── SpecialStart.cs │ ├── SpecialStartControl.xaml │ ├── SpecialStartControl.xaml.cs │ ├── SqlServerSetup.cs │ ├── StringHelper.cs │ ├── TaskManagerServiceHelper.cs │ ├── UnitedStatesCity.cs │ ├── WeatherHelper.cs │ ├── WpfExtensions.cs │ └── WpfHelper.cs ├── IngredientAmountControl.xaml ├── IngredientAmountControl.xaml.cs ├── IngredientEditorControl.xaml ├── IngredientEditorControl.xaml.cs ├── IngredientEditorDetailsControl.xaml ├── IngredientEditorDetailsControl.xaml.cs ├── IngredientEditorPreparationControl.xaml ├── IngredientEditorPreparationControl.xaml.cs ├── InventoryEditorControl.xaml ├── InventoryEditorControl.xaml.cs ├── ItemEditorControl.xaml ├── ItemEditorControl.xaml.cs ├── ItemEditorDetailsControl.xaml ├── ItemEditorDetailsControl.xaml.cs ├── ItemEditorGroupingControl.xaml ├── ItemEditorGroupingControl.xaml.cs ├── ItemEditorIngredientsControl.xaml ├── ItemEditorIngredientsControl.xaml.cs ├── ItemEditorOptionSetControl.xaml ├── ItemEditorOptionSetControl.xaml.cs ├── ItemEditorSpecialPricingControl.xaml ├── ItemEditorSpecialPricingControl.xaml.cs ├── ItemMaintenanceControl.xaml ├── ItemMaintenanceControl.xaml.cs ├── ItemMaintenanceViewContextMenuControl.xaml ├── ItemMaintenanceViewContextMenuControl.xaml.cs ├── ItemOptionEditorControl.xaml ├── ItemOptionEditorControl.xaml.cs ├── ItemOptionMaintenanceControl.xaml ├── ItemOptionMaintenanceControl.xaml.cs ├── ItemOptionSetEditorControl.xaml ├── ItemOptionSetEditorControl.xaml.cs ├── LoginControl.xaml ├── LoginControl.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Managers │ ├── DeviceManager.cs │ ├── PrinterManager.cs │ ├── RegisterManager.cs │ ├── ReportManager.cs │ ├── SessionManager.cs │ └── UserControlManager.cs ├── Networking │ ├── BroadcastClientSocket.cs │ ├── BroadcastServerSocket.cs │ ├── NetworkTools.cs │ ├── PipeClient.cs │ ├── Srp6ClientSocket.cs │ └── Updater.cs ├── OrderEntryCategorySelectionControl.xaml ├── OrderEntryCategorySelectionControl.xaml.cs ├── OrderEntryChangeEmployeeControl.xaml ├── OrderEntryChangeEmployeeControl.xaml.cs ├── OrderEntryControl.xaml ├── OrderEntryControl.xaml.cs ├── OrderEntryFunctionsControl.xaml ├── OrderEntryFunctionsControl.xaml.cs ├── OrderEntryItemOptionsLineControl.xaml ├── OrderEntryItemOptionsLineControl.xaml.cs ├── OrderEntryItemSelectionControl.xaml ├── OrderEntryItemSelectionControl.xaml.cs ├── OrderEntryNonOrderCommandsControl.xaml ├── OrderEntryNonOrderCommandsControl.xaml.cs ├── OrderEntryOrderCommandsControl.xaml ├── OrderEntryOrderCommandsControl.xaml.cs ├── OrderEntryPizzaItemControl.xaml ├── OrderEntryPizzaItemControl.xaml.cs ├── OrderEntryReceiptTape.xaml ├── OrderEntryReceiptTape.xaml.cs ├── OrderEntryRegisterMenuControl.xaml ├── OrderEntryRegisterMenuControl.xaml.cs ├── OrderEntrySetupControl.xaml ├── OrderEntrySetupControl.xaml.cs ├── OrderEntryStandardItemOptionsControl.xaml ├── OrderEntryStandardItemOptionsControl.xaml.cs ├── OrderEntryTicketDetailsControl.xaml ├── OrderEntryTicketDetailsControl.xaml.cs ├── OrderEntryTicketSelectionControl.xaml ├── OrderEntryTicketSelectionControl.xaml.cs ├── PartyEditControl.xaml ├── PartyEditControl.xaml.cs ├── PartyManagementControl.xaml ├── PartyManagementControl.xaml.cs ├── PersonalSettingsControl.xaml ├── PersonalSettingsControl.xaml.cs ├── PrintOptionEditorControl.xaml ├── PrintOptionEditorControl.xaml.cs ├── PrintOptionMaintenanceControl.xaml ├── PrintOptionMaintenanceControl.xaml.cs ├── ProgramLogoControl.xaml ├── ProgramLogoControl.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PurchasingMaintenanceControl.xaml ├── PurchasingMaintenanceControl.xaml.cs ├── RegisterBankrollDriverControl.xaml ├── RegisterBankrollDriverControl.xaml.cs ├── RegisterDrawerStartControl.xaml ├── RegisterDrawerStartControl.xaml.cs ├── ReportViewerControl.xaml ├── ReportViewerControl.xaml.cs ├── ReportsMenuControl.xaml ├── ReportsMenuControl.xaml.cs ├── Resources │ ├── AddIngredientParQuantity.sql │ ├── AddItemButtonImage.sql │ ├── AddItemGrouping-Part1.sql │ ├── AddItemGrouping-Part2.sql │ ├── AddItemGrouping-Part3.sql │ ├── AddPseudoEmployeeId.sql │ ├── AddTicketItemFireTime.sql │ ├── EnableClrScript.sql │ ├── Images │ │ ├── GoUp.png │ │ ├── drive.png │ │ ├── file.png │ │ ├── floppy.png │ │ └── folder.png │ ├── InstallDatabaseScript.sql │ ├── PosResourceDictionary.xaml │ └── pos.gif ├── SeatingDineInControl.xaml ├── SeatingDineInControl.xaml.cs ├── SeatingEditorControl.xaml ├── SeatingEditorControl.xaml.cs ├── SeatingMaintenanceControl.xaml ├── SeatingMaintenanceControl.xaml.cs ├── SeatingPersonInformationControl.xaml ├── SeatingPersonInformationControl.xaml.cs ├── SeatingReservationControl.xaml ├── SeatingReservationControl.xaml.cs ├── SeatingRoomEditorControl.xaml ├── SeatingRoomEditorControl.xaml.cs ├── SeatingSelectionControl.xaml ├── SeatingSelectionControl.xaml.cs ├── StartupWindow.xaml ├── StartupWindow.xaml.cs ├── SystemSettingsEditorControl.xaml ├── SystemSettingsEditorControl.xaml.cs ├── TaxEditorControl.xaml ├── TaxEditorControl.xaml.cs ├── TaxMaintenanceControl.xaml ├── TaxMaintenanceControl.xaml.cs ├── TemPOS-DB.sdf ├── TemPOS.csproj ├── TemPOS.csproj.user ├── Tempos.ico ├── TicketCashoutControl.xaml ├── TicketCashoutControl.xaml.cs ├── TicketCashoutPaymentControl.xaml ├── TicketCashoutPaymentControl.xaml.cs ├── TicketCouponControl.xaml ├── TicketCouponControl.xaml.cs ├── TicketDeliveryDispatchControl.xaml ├── TicketDeliveryDispatchControl.xaml.cs ├── TicketDiscountControl.xaml ├── TicketDiscountControl.xaml.cs ├── TicketFilterControl.xaml ├── TicketFilterControl.xaml.cs ├── TicketItemTemplate.xaml ├── TicketItemTemplate.xaml.cs ├── TicketTypeFilterControl.xaml ├── TicketTypeFilterControl.xaml.cs ├── TimesheetEditorControl.xaml ├── TimesheetEditorControl.xaml.cs ├── TimesheetMaintenanceControl.xaml ├── TimesheetMaintenanceControl.xaml.cs ├── Types │ ├── BranchType.cs │ ├── CategoryFieldName.cs │ ├── CouponFieldName.cs │ ├── ItemFieldName.cs │ ├── ItemOptionFieldName.cs │ ├── ItemTaxFieldName.cs │ ├── PosDeviceTypes.cs │ ├── PrinterEscapeCodes.cs │ ├── Strings.Dutch.cs │ ├── Strings.English.cs │ ├── Strings.French.cs │ ├── Strings.German.cs │ ├── Strings.Italian.cs │ ├── Strings.Portuguese.cs │ ├── Strings.Spanish.cs │ ├── Strings.cs │ └── TicketSelectionShow.cs ├── VendorMaintenanceControl.xaml ├── VendorMaintenanceControl.xaml.cs ├── VendorOrderControl.xaml ├── VendorOrderControl.xaml.cs ├── app.config └── settings.config ├── Tempos Quick Notes.txt ├── Tempos.ico ├── Tempos.sln ├── TemposClientAdministration ├── App.xaml ├── App.xaml.cs ├── CrashReportControl.xaml ├── CrashReportControl.xaml.cs ├── CustomerDetailsControl.xaml ├── CustomerDetailsControl.xaml.cs ├── CustomerSetupControl.xaml ├── CustomerSetupControl.xaml.cs ├── Helpers │ ├── Srp6ServerSocket.cs │ ├── UpdateBuilder.cs │ └── UpdateServer.cs ├── Icons │ ├── Bulb.ico │ ├── Computers.ico │ ├── DefaultTrayIcon.ico │ ├── Error.ico │ ├── Inactive.ico │ └── Tempos.ico ├── LicenseDetailsControl.xaml ├── LicenseDetailsControl.xaml.cs ├── LicenseSetupControl.xaml ├── LicenseSetupControl.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TaskbarNotification │ ├── BalloonIcon.cs │ ├── Interop │ │ ├── BalloonFlags.cs │ │ ├── IconDataMembers.cs │ │ ├── IconState.cs │ │ ├── MouseEvent.cs │ │ ├── NotifyCommand.cs │ │ ├── NotifyIconData.cs │ │ ├── NotifyIconVersion.cs │ │ ├── Point.cs │ │ ├── TrayInfo.cs │ │ ├── WinApi.cs │ │ ├── WindowClass.cs │ │ └── WindowMessageSink.cs │ ├── PopupActivationMode.cs │ ├── RoutedEventHelper.cs │ ├── TaskbarIcon.Declarations.cs │ ├── TaskbarIcon.cs │ └── Util.cs ├── TaskbarWindow.xaml ├── TaskbarWindow.xaml.cs ├── TemposClientAdministration.csproj ├── TrayContextMenuControl.xaml ├── TrayContextMenuControl.xaml.cs ├── UpdateBuilderControl.xaml ├── UpdateBuilderControl.xaml.cs ├── UpdateServiceControl.xaml └── UpdateServiceControl.xaml.cs ├── TemposLanguageProcessor ├── App.xaml ├── App.xaml.cs ├── Extractor │ ├── CsExtractor.cs │ ├── Extractor.cs │ └── WpfExtractor.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TemposLanguageProcessor.csproj ├── TestClass.cs ├── Translation │ ├── FileTranslation.cs │ └── GoogleTranslation.cs └── Types │ ├── Languages.cs │ ├── Strings.English.cs │ ├── Strings.cs │ └── StringsCore.cs ├── TemposLibrary ├── AESHelper.cs ├── AsynchronousSocket.cs ├── AuthenticationRequestEvent.cs ├── BigIntegerExtension.cs ├── CommonExtensions.cs ├── Desktop.cs ├── ExceptionEvent.cs ├── HookManager.Structures.cs ├── HookManager.Win32.cs ├── HookManager.cs ├── KeyboardLock.csproj ├── Properties │ └── AssemblyInfo.cs ├── SRP6.cs ├── TemposLibrary.csproj ├── TextEvent.cs ├── VistaSecurity.cs ├── Win32 │ ├── Kernel32.cs │ ├── Powrprof.cs │ ├── PsApi.cs │ ├── User32.cs │ └── WinBase.cs └── Win32Wrappers.cs ├── TemposUpdateInstaller ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TemposUpdateInstaller.csproj └── TemposUpdateInstaller.csproj.user ├── TemposUpdateServiceModels ├── CrashIncident.cs ├── CrashReport.cs ├── Customer.cs ├── DatabaseHelper.cs ├── License.cs ├── Properties │ └── AssemblyInfo.cs └── TemposUpdateServiceModels.csproj ├── TemposWebApplication ├── App_Start │ ├── AuthConfig.cs │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Content │ ├── Site.css │ └── themes │ │ └── base │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui.css │ │ ├── jquery.ui.accordion.css │ │ ├── jquery.ui.all.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jquery.ui.base.css │ │ ├── jquery.ui.button.css │ │ ├── jquery.ui.core.css │ │ ├── jquery.ui.datepicker.css │ │ ├── jquery.ui.dialog.css │ │ ├── jquery.ui.progressbar.css │ │ ├── jquery.ui.resizable.css │ │ ├── jquery.ui.selectable.css │ │ ├── jquery.ui.slider.css │ │ ├── jquery.ui.tabs.css │ │ ├── jquery.ui.theme.css │ │ └── minified │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui.min.css │ │ ├── jquery.ui.accordion.min.css │ │ ├── jquery.ui.autocomplete.min.css │ │ ├── jquery.ui.button.min.css │ │ ├── jquery.ui.core.min.css │ │ ├── jquery.ui.datepicker.min.css │ │ ├── jquery.ui.dialog.min.css │ │ ├── jquery.ui.progressbar.min.css │ │ ├── jquery.ui.resizable.min.css │ │ ├── jquery.ui.selectable.min.css │ │ ├── jquery.ui.slider.min.css │ │ ├── jquery.ui.tabs.min.css │ │ └── jquery.ui.theme.min.css ├── Controllers │ ├── AccountController.cs │ ├── AdminController.cs │ ├── CustomerController.cs │ ├── EmployeeController.cs │ ├── HomeController.cs │ ├── JobsController.cs │ ├── MenuController.cs │ ├── OrderController.cs │ ├── ReportsController.cs │ └── SetupController.cs ├── Filters │ └── InitializeSimpleMembershipAttribute.cs ├── Global.asax ├── Global.asax.cs ├── Images │ ├── accent.png │ ├── bullet.png │ ├── heroAccent.png │ ├── orderedList0.png │ ├── orderedList1.png │ ├── orderedList2.png │ ├── orderedList3.png │ ├── orderedList4.png │ ├── orderedList5.png │ ├── orderedList6.png │ ├── orderedList7.png │ ├── orderedList8.png │ └── orderedList9.png ├── Models │ └── AccountModels.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── _references.js │ ├── jquery-1.7.1-vsdoc.js │ ├── jquery-1.7.1.js │ ├── jquery-1.7.1.min.js │ ├── jquery-ui-1.8.20.js │ ├── jquery-ui-1.8.20.min.js │ ├── jquery.unobtrusive-ajax.js │ ├── jquery.unobtrusive-ajax.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── knockout-2.1.0.debug.js │ ├── knockout-2.1.0.js │ └── modernizr-2.5.3.js ├── TemposWebApplication.csproj ├── TemposWebApplication.csproj.user ├── Views │ ├── Account │ │ ├── ExternalLoginConfirmation.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── Login.cshtml │ │ ├── Manage.cshtml │ │ ├── Register.cshtml │ │ ├── _ChangePasswordPartial.cshtml │ │ ├── _ExternalLoginsListPartial.cshtml │ │ ├── _RemoveExternalLoginsPartial.cshtml │ │ └── _SetPasswordPartial.cshtml │ ├── Admin │ │ ├── Index.cshtml │ │ ├── Schedule.cshtml │ │ └── Timesheet.cshtml │ ├── Customer │ │ ├── Index.cshtml │ │ ├── Loyality.cshtml │ │ └── Reservation.cshtml │ ├── Employee │ │ ├── Index.cshtml │ │ ├── Payroll.cshtml │ │ └── Schedule.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ ├── Index.cshtml │ │ └── StoreLocator.cshtml │ ├── Jobs │ │ └── Index.cshtml │ ├── Menu │ │ ├── Index.cshtml │ │ ├── ItemDetails.cshtml │ │ └── Items.cshtml │ ├── Order │ │ └── Index.cshtml │ ├── Reports │ │ ├── AdjustmentIngredientRecipe.cshtml │ │ ├── AdjustmentItem.cshtml │ │ ├── AdjustmentItemRecipe.cshtml │ │ ├── AdjustmentPrices.cshtml │ │ ├── AdjustmentTimesheet.cshtml │ │ ├── EmployeeSalesByCategory.cshtml │ │ ├── EmployeeSalesByItem.cshtml │ │ ├── Index.cshtml │ │ ├── InventoryAdjustments.cshtml │ │ ├── InventoryCurrent.cshtml │ │ ├── InventoryIngredientUsage.cshtml │ │ ├── LaborEmployeeHours.cshtml │ │ ├── LaborHourlyTotals.cshtml │ │ ├── RegisterDeposits.cshtml │ │ ├── RegisterFloatingDocking.cshtml │ │ ├── RegisterNoSales.cshtml │ │ ├── RegisterPayouts.cshtml │ │ ├── RegisterSafeDrops.cshtml │ │ ├── TicketCancels.cshtml │ │ ├── TicketRefunds.cshtml │ │ ├── TicketReturns.cshtml │ │ ├── TicketVoids.cshtml │ │ ├── TotalSalesByCategory.cshtml │ │ ├── TotalSalesByEmployee.cshtml │ │ ├── TotalSalesByItem.cshtml │ │ ├── WasteByCategory.cshtml │ │ ├── WasteByIngredient.cshtml │ │ └── WasteByItem.cshtml │ ├── Setup │ │ ├── Categories.cshtml │ │ ├── Coupons.cshtml │ │ ├── Discounts.cshtml │ │ ├── EmployeeJobs.cshtml │ │ ├── Employees.cshtml │ │ ├── HiringJobs.cshtml │ │ ├── Index.cshtml │ │ ├── Items.cshtml │ │ ├── Occasions.cshtml │ │ └── Taxes.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _LoginPartial.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico └── packages.config └── packages ├── DotNetOpenAuth.AspNet.4.0.3.12153 ├── DotNetOpenAuth.AspNet.4.0.3.12153.nupkg └── lib │ └── net40-full │ ├── DotNetOpenAuth.AspNet.dll │ └── DotNetOpenAuth.AspNet.xml ├── DotNetOpenAuth.Core.4.0.3.12153 ├── DotNetOpenAuth.Core.4.0.3.12153.nupkg └── lib │ └── net40-full │ ├── DotNetOpenAuth.Core.dll │ └── DotNetOpenAuth.Core.xml ├── DotNetOpenAuth.OAuth.Consumer.4.0.3.12153 ├── DotNetOpenAuth.OAuth.Consumer.4.0.3.12153.nupkg └── lib │ └── net40-full │ ├── DotNetOpenAuth.OAuth.Consumer.dll │ └── DotNetOpenAuth.OAuth.Consumer.xml ├── DotNetOpenAuth.OAuth.Core.4.0.3.12153 ├── DotNetOpenAuth.OAuth.Core.4.0.3.12153.nupkg └── lib │ └── net40-full │ ├── DotNetOpenAuth.OAuth.dll │ └── DotNetOpenAuth.OAuth.xml ├── DotNetOpenAuth.OpenId.Core.4.0.3.12153 ├── DotNetOpenAuth.OpenId.Core.4.0.3.12153.nupkg └── lib │ └── net40-full │ ├── DotNetOpenAuth.OpenId.dll │ └── DotNetOpenAuth.OpenId.xml ├── DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153 ├── DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153.nupkg └── lib │ └── net40-full │ ├── DotNetOpenAuth.OpenId.RelyingParty.dll │ └── DotNetOpenAuth.OpenId.RelyingParty.xml ├── EntityFramework.5.0.0 ├── Content │ ├── App.config.transform │ └── Web.config.transform ├── EntityFramework.5.0.0.nupkg ├── lib │ ├── net40 │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml │ └── net45 │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml └── tools │ ├── EntityFramework.PS3.psd1 │ ├── EntityFramework.PowerShell.Utility.dll │ ├── EntityFramework.PowerShell.dll │ ├── EntityFramework.psd1 │ ├── EntityFramework.psm1 │ ├── Redirect.VS11.config │ ├── Redirect.config │ ├── about_EntityFramework.help.txt │ ├── init.ps1 │ ├── install.ps1 │ └── migrate.exe ├── Microsoft.AspNet.Mvc.4.0.20710.0 ├── Microsoft.AspNet.Mvc.4.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.2.0.20710.0 ├── Microsoft.AspNet.Razor.2.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Razor.dll │ └── System.Web.Razor.xml ├── Microsoft.AspNet.Web.Optimization.1.0.0 ├── Microsoft.AspNet.Web.Optimization.1.0.0.nupkg └── lib │ └── net40 │ └── System.Web.Optimization.dll ├── Microsoft.AspNet.WebApi.4.0.20710.0 └── Microsoft.AspNet.WebApi.4.0.20710.0.nupkg ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0 ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0 ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg ├── content │ └── web.config.transform └── lib │ └── net40 │ ├── System.Web.Http.dll │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0 ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Http.WebHost.dll │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebPages.2.0.20710.0 ├── Microsoft.AspNet.WebPages.2.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ └── System.Web.WebPages.xml ├── Microsoft.AspNet.WebPages.Data.2.0.20710.0 ├── Microsoft.AspNet.WebPages.Data.2.0.20710.0.nupkg └── lib │ └── net40 │ ├── WebMatrix.Data.dll │ └── WebMatrix.Data.xml ├── Microsoft.AspNet.WebPages.OAuth.2.0.20710.0 ├── Microsoft.AspNet.WebPages.OAuth.2.0.20710.0.nupkg └── lib │ └── net40 │ ├── Microsoft.Web.WebPages.OAuth.dll │ └── Microsoft.Web.WebPages.OAuth.xml ├── Microsoft.AspNet.WebPages.WebData.2.0.20710.0 ├── Microsoft.AspNet.WebPages.WebData.2.0.20710.0.nupkg └── lib │ └── net40 │ ├── WebMatrix.WebData.dll │ └── WebMatrix.WebData.xml ├── Microsoft.Net.Http.2.0.20710.0 ├── Microsoft.Net.Http.2.0.20710.0.nupkg └── lib │ ├── net40 │ ├── System.Net.Http.WebRequest.dll │ ├── System.Net.Http.WebRequest.xml │ ├── System.Net.Http.dll │ └── System.Net.Http.xml │ └── net45 │ └── _._ ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0 ├── Content │ └── Scripts │ │ ├── jquery.unobtrusive-ajax.js │ │ └── jquery.unobtrusive-ajax.min.js └── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg ├── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0 ├── Content │ └── Scripts │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js └── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg ├── Modernizr.2.5.3 ├── Content │ └── Scripts │ │ └── modernizr-2.5.3.js └── Modernizr.2.5.3.nupkg ├── Newtonsoft.Json.4.5.6 ├── Newtonsoft.Json.4.5.6.nupkg └── lib │ └── net40 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── WebGrease.1.1.0 ├── WebGrease.1.1.0.nupkg ├── lib │ ├── Antlr3.Runtime.dll │ └── WebGrease.dll └── tools │ └── WG.exe ├── jQuery.1.7.1.1 ├── Content │ └── Scripts │ │ ├── jquery-1.7.1-vsdoc.js │ │ ├── jquery-1.7.1.js │ │ └── jquery-1.7.1.min.js ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-1.7.1.intellisense.js │ └── uninstall.ps1 └── jQuery.1.7.1.1.nupkg ├── jQuery.UI.Combined.1.8.20.1 ├── Content │ ├── Content │ │ └── themes │ │ │ └── base │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery.ui.accordion.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.autocomplete.css │ │ │ ├── jquery.ui.base.css │ │ │ ├── jquery.ui.button.css │ │ │ ├── jquery.ui.core.css │ │ │ ├── jquery.ui.datepicker.css │ │ │ ├── jquery.ui.dialog.css │ │ │ ├── jquery.ui.progressbar.css │ │ │ ├── jquery.ui.resizable.css │ │ │ ├── jquery.ui.selectable.css │ │ │ ├── jquery.ui.slider.css │ │ │ ├── jquery.ui.tabs.css │ │ │ ├── jquery.ui.theme.css │ │ │ └── minified │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery.ui.accordion.min.css │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ ├── jquery.ui.button.min.css │ │ │ ├── jquery.ui.core.min.css │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ ├── jquery.ui.dialog.min.css │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ ├── jquery.ui.resizable.min.css │ │ │ ├── jquery.ui.selectable.min.css │ │ │ ├── jquery.ui.slider.min.css │ │ │ ├── jquery.ui.tabs.min.css │ │ │ └── jquery.ui.theme.min.css │ └── Scripts │ │ ├── jquery-ui-1.8.20.js │ │ └── jquery-ui-1.8.20.min.js └── jQuery.UI.Combined.1.8.20.1.nupkg ├── jQuery.Validation.1.9.0.1 ├── Content │ └── Scripts │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js └── jQuery.Validation.1.9.0.1.nupkg ├── knockoutjs.2.1.0 ├── Content │ └── Scripts │ │ ├── knockout-2.1.0.debug.js │ │ └── knockout-2.1.0.js └── knockoutjs.2.1.0.nupkg └── repositories.config /AssemblyInfoUpdate/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DotNetZip/Contents.txt: -------------------------------------------------------------------------------- 1 | This is the Developer's Kit package for DotNetZip v1.9. This package was packed Thu-02-25-2010-222909.78. In this zip you will find Debug and Release DLLs for the various versions of the Ionic.Zip class library and the Ionic.Zlib class library. There is a separate top-level folder for each distinct version of the DLL, and within those top-level folders there are Debug and Release folders. In the Debug folders you will find a DLL, a PDB, and an XML file for the given library, while the Release folder will have just a DLL. The DLL is the actual library (either Debug or Release flavor), the PDB is the debug information, and the XML file is the intellisense doc for use within Visual Studio. There is also a .chm file, which is a viewable help file. In addition you will find the MSI file for the VS2008-integrated help. If you have any questions, please check the forums on http://www.codeplex.com/DotNetZip -------------------------------------------------------------------------------- /DotNetZip/DotNetZip-v1.9-CompactFramework/Debug/Ionic.Zip.CF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/DotNetZip-v1.9-CompactFramework/Debug/Ionic.Zip.CF.dll -------------------------------------------------------------------------------- /DotNetZip/DotNetZip-v1.9-CompactFramework/Debug/Ionic.Zip.CF.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/DotNetZip-v1.9-CompactFramework/Debug/Ionic.Zip.CF.pdb -------------------------------------------------------------------------------- /DotNetZip/DotNetZip-v1.9-CompactFramework/Readme.txt: -------------------------------------------------------------------------------- 1 | DotNetZip CF Library v1.9 packed Thu-02-25-2010-222909.78. This assembly is built for the Compact Framework v2.0 or later, and includes all the classes in the Ionic.Zip namespace, as well as all the classes in the Ionic.Zlib namespace. Use this library if you want to manipulate ZIP files in smart-device applications, and if you want to use ZLIB compression directly, or if you want to use the compressing stream classes like GZipStream, DeflateStream, or ZlibStream. -------------------------------------------------------------------------------- /DotNetZip/DotNetZip-v1.9-CompactFramework/Release/Ionic.Zip.CF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/DotNetZip-v1.9-CompactFramework/Release/Ionic.Zip.CF.dll -------------------------------------------------------------------------------- /DotNetZip/DotNetZip-v1.9/Debug/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/DotNetZip-v1.9/Debug/Ionic.Zip.dll -------------------------------------------------------------------------------- /DotNetZip/DotNetZip-v1.9/Debug/Ionic.Zip.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/DotNetZip-v1.9/Debug/Ionic.Zip.pdb -------------------------------------------------------------------------------- /DotNetZip/DotNetZip-v1.9/Readme.txt: -------------------------------------------------------------------------------- 1 | DotNetZip Library Developer's Kit package, v1.9 packed Thu-02-25-2010-222909.78. This is the DotNetZip library. It includes the classes in the Ionic.Zip namespace as well as the classes in the Ionic.Zlib namespace. Use this library if you want to manipulate ZIP files within .NET applications. -------------------------------------------------------------------------------- /DotNetZip/DotNetZip-v1.9/Release/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/DotNetZip-v1.9/Release/Ionic.Zip.dll -------------------------------------------------------------------------------- /DotNetZip/DotNetZipLib-v1.9.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/DotNetZipLib-v1.9.chm -------------------------------------------------------------------------------- /DotNetZip/PleaseDonate.txt: -------------------------------------------------------------------------------- 1 | Don't forget: DotNetZip is donationware. Please donate. It's for a good cause. http://cheeso.members.winisp.net/DotNetZipDonate.aspx -------------------------------------------------------------------------------- /DotNetZip/Zlib-v1.9-CompactFramework/Debug/Ionic.Zlib.CF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/Zlib-v1.9-CompactFramework/Debug/Ionic.Zlib.CF.dll -------------------------------------------------------------------------------- /DotNetZip/Zlib-v1.9-CompactFramework/Debug/Ionic.Zlib.CF.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/Zlib-v1.9-CompactFramework/Debug/Ionic.Zlib.CF.pdb -------------------------------------------------------------------------------- /DotNetZip/Zlib-v1.9-CompactFramework/Readme.txt: -------------------------------------------------------------------------------- 1 | DotNetZlib CF v1.9 packed Thu-02-25-2010-222909.78. This is the Ionic.Zlib library packaged for the .NET Compact Framework v2.0 or later. Use this library if you want to take advantage of ZLIB compression directly from within Smart device applications, or if you want to use the compressing stream classes like GZipStream, DeflateStream, or ZlibStream. -------------------------------------------------------------------------------- /DotNetZip/Zlib-v1.9-CompactFramework/Release/Ionic.Zlib.CF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/Zlib-v1.9-CompactFramework/Release/Ionic.Zlib.CF.dll -------------------------------------------------------------------------------- /DotNetZip/Zlib-v1.9/Debug/Ionic.Zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/Zlib-v1.9/Debug/Ionic.Zlib.dll -------------------------------------------------------------------------------- /DotNetZip/Zlib-v1.9/Debug/Ionic.Zlib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/Zlib-v1.9/Debug/Ionic.Zlib.pdb -------------------------------------------------------------------------------- /DotNetZip/Zlib-v1.9/Readme.txt: -------------------------------------------------------------------------------- 1 | DotNetZlib v1.9 packed Thu-02-25-2010-222909.78. This is the Ionic.Zlib assembly; it includes only the classes in the Ionic.Zlib namespace. Use this library if you want to take advantage of ZLIB compression directly, or if you want to use the compressing stream classes like GZipStream, DeflateStream, or ZlibStream. -------------------------------------------------------------------------------- /DotNetZip/Zlib-v1.9/Release/Ionic.Zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/DotNetZip/Zlib-v1.9/Release/Ionic.Zlib.dll -------------------------------------------------------------------------------- /Ionic/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/Ionic/Ionic.Zip.dll -------------------------------------------------------------------------------- /Ionic/Ionic.Zip.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/Ionic/Ionic.Zip.pdb -------------------------------------------------------------------------------- /Ionic/Ionic.Zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/Ionic/Ionic.Zlib.dll -------------------------------------------------------------------------------- /Ionic/Ionic.Zlib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/Ionic/Ionic.Zlib.pdb -------------------------------------------------------------------------------- /PosControls/ImageBrushEditorControl.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /PosControls/Interfaces/ISelectable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosControls.Interfaces 7 | { 8 | public interface ISelectable 9 | { 10 | bool IsSelectable 11 | { 12 | get; 13 | set; 14 | } 15 | 16 | bool IsSelected 17 | { 18 | get; 19 | set; 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /PosControls/Interfaces/IShadeable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosControls.Interfaces 7 | { 8 | public interface IShadeable 9 | { 10 | bool ShowShadingOverlay 11 | { 12 | get; 13 | set; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /PosControls/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /PosControls/Types/CustomTextBoxType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosControls.Types 7 | { 8 | public enum CustomTextBoxType 9 | { 10 | Keyboard, 11 | Password, 12 | Currency, 13 | IntegerNumeric, 14 | FloatNumeric, 15 | Percentage, 16 | PhoneNumber, 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /PosControls/Types/ToppingStateType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosControls.Types 7 | { 8 | public enum ToppingStateType 9 | { 10 | Remove = -1, 11 | Normal = 0, 12 | AddExtra = 1, 13 | AddExtraExtra = 2, 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PosControls/WebBrowserHostControl.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /PosModels/Managers/DatabaseManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosModels.Managers 7 | { 8 | public class DatabaseManager 9 | { 10 | 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /PosModels/Types/BankAccountType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosModels.Types 7 | { 8 | public enum BankAccountType : byte 9 | { 10 | None = 0, 11 | Checking = 1, 12 | Savings = 2, 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /PosModels/Types/CancelType.cs: -------------------------------------------------------------------------------- 1 | namespace PosModels.Types 2 | { 3 | public enum CancelType : byte 4 | { 5 | DecreasedQuantity = 0, 6 | TicketItemCancel = 1, 7 | TicketCancel = 2, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /PosModels/Types/CommonConnection.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosModels.Types 7 | { 8 | /// 9 | /// This class is going to be used to replace SqlConnection, and it's alternatives with a single class 10 | /// 11 | public class CommonConnection 12 | { 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /PosModels/Types/ItemAdjustmentType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosModels.Types 7 | { 8 | public enum ItemAdjustmentType : byte 9 | { 10 | Addition = 0, 11 | Discontinuation = 1, 12 | OptionSetAddition = 2, 13 | OptionSetDeletion = 3, 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PosModels/Types/ItemOptionAdjustmentType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosModels.Types 7 | { 8 | public enum ItemOptionAdjustmentType 9 | { 10 | MinimumRequiredOptions, // (ItemOptionSet) 11 | NumberOfFreeOptions, // (ItemOptionSet) 12 | MaximumAllowedOptions, // (ItemOptionSet) 13 | CostForExtra, // (both tables) 14 | UsesItem, // (ItemOption) 15 | UsesIngredient, // (ItemOption) 16 | UsesItemNowUsesIngredient, // (ItemOption) 17 | UsesIngredientNowUsesItem // (ItemOption) 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /PosModels/Types/ModeledDataClassAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosModels.Types 7 | { 8 | [AttributeUsage(AttributeTargets.Class)] 9 | public class ModeledDataClassAttribute : System.Attribute 10 | { 11 | public ModeledDataClassAttribute() 12 | { 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PosModels/Types/ModeledDataNullableAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosModels.Types 7 | { 8 | [AttributeUsage(AttributeTargets.Property)] 9 | public class ModeledDataNullableAttribute : System.Attribute 10 | { 11 | public ModeledDataNullableAttribute() 12 | { 13 | 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /PosModels/Types/PaymentSource.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosModels.Types 7 | { 8 | public enum PaymentSource : byte 9 | { 10 | Unknown, 11 | Cash, 12 | Credit, 13 | Check, 14 | GiftCard 15 | } 16 | 17 | public static class PaymentSourceExtensions 18 | { 19 | public static PaymentSource GetPaymentSource(this byte paymentSource) 20 | { 21 | try 22 | { 23 | return (PaymentSource)paymentSource; 24 | } 25 | catch 26 | { 27 | return PaymentSource.Unknown; 28 | } 29 | } 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /PosModels/Types/PrintDestinations.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosModels.Types 7 | { 8 | [FlagsAttribute] 9 | public enum PrintDestination : short 10 | { 11 | None = 0, 12 | Journal = 1, 13 | Receipt = 2, 14 | Kitchen1 = 4, 15 | Kitchen2 = 8, 16 | Kitchen3 = 16, 17 | Bar1 = 32, 18 | Bar2 = 64, 19 | Bar3 = 128 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /PosModels/Types/TicketRefundType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PosModels.Types 7 | { 8 | public enum TicketRefundType : byte 9 | { 10 | Unknown = 0, 11 | Reopened = 1, 12 | CancelUnmade = 2, 13 | CancelMade = 3, 14 | Void = 4 15 | } 16 | 17 | public static class TicketRefundTypeExtensions 18 | { 19 | public static TicketRefundType GetTicketRefundType(this byte ticketRefundType) 20 | { 21 | try 22 | { 23 | return (TicketRefundType)ticketRefundType; 24 | } 25 | catch 26 | { 27 | return TicketRefundType.Unknown; 28 | } 29 | } 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /QRCodeLib/Properties/Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Properties/Resources.resources -------------------------------------------------------------------------------- /QRCodeLib/QRCode.NET.gpState: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /QRCodeLib/QRCodeLib.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /QRCodeLib/QRCodeNET.gpState: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv10_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv10_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv10_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv10_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv10_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv10_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv10_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv10_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv11_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv11_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv11_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv11_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv11_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv11_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv11_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv11_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv12_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv12_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv12_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv12_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv12_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv12_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv12_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv12_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv13_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv13_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv13_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv13_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv13_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv13_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv13_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv13_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv14_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv14_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv14_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv14_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv14_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv14_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv14_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv14_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv15_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv15_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv15_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv15_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv15_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv15_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv15_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv15_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv16_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv16_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv16_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv16_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv16_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv16_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv16_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv16_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv17_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv17_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv17_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv17_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv17_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv17_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv17_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv17_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv18_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv18_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv18_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv18_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv18_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv18_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv18_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv18_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv19_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv19_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv19_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv19_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv19_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv19_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv19_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv19_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv1_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv1_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv1_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv1_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv1_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv1_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv1_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv1_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv20_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv20_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv20_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv20_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv20_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv20_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv20_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv20_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv21_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv21_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv21_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv21_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv21_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv21_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv21_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv21_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv22_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv22_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv22_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv22_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv22_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv22_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv22_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv22_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv23_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv23_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv23_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv23_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv23_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv23_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv23_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv23_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv24_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv24_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv24_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv24_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv24_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv24_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv24_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv24_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv25_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv25_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv25_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv25_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv25_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv25_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv25_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv25_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv26_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv26_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv26_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv26_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv26_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv26_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv26_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv26_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv27_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv27_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv27_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv27_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv27_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv27_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv27_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv27_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv28_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv28_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv28_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv28_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv28_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv28_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv28_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv28_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv29_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv29_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv29_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv29_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv29_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv29_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv29_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv29_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv2_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv2_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv2_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv2_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv2_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv2_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv2_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv2_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv30_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv30_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv30_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv30_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv30_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv30_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv30_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv30_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv31_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv31_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv31_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv31_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv31_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv31_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv31_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv31_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv32_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv32_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv32_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv32_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv32_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv32_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv32_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv32_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv33_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv33_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv33_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv33_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv33_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv33_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv33_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv33_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv34_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv34_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv34_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv34_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv34_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv34_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv34_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv34_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv35_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv35_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv35_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv35_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv35_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv35_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv35_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv35_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv36_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv36_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv36_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv36_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv36_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv36_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv36_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv36_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv37_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv37_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv37_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv37_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv37_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv37_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv37_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv37_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv38_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv38_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv38_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv38_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv38_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv38_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv38_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv38_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv39_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv39_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv39_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv39_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv39_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv39_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv39_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv39_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv3_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv3_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv3_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv3_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv3_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv3_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv3_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv3_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv40_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv40_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv40_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv40_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv40_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv40_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv40_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv40_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv4_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv4_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv4_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv4_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv4_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv4_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv4_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv4_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv5_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv5_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv5_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv5_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv5_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv5_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv5_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv5_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv6_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv6_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv6_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv6_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv6_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv6_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv6_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv6_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv7_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv7_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv7_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv7_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv7_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv7_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv7_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv7_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv8_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv8_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv8_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv8_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv8_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv8_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv8_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv8_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv9_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv9_0.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv9_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv9_1.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv9_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv9_2.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrv9_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/qrv9_3.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrvfr1.dat: -------------------------------------------------------------------------------- 1 | 111111100000001111111 2 | 100000100000001000001 3 | 101110100000001011101 4 | 101110100000001011101 5 | 101110100000001011101 6 | 100000100000001000001 7 | 111111101010101111111 8 | 000000000000000000000 9 | 000000100000000000000 10 | 000000000000000000000 11 | 000000100000000000000 12 | 000000000000000000000 13 | 000000100000000000000 14 | 000000001000000000000 15 | 111111100000000000000 16 | 100000100000000000000 17 | 101110100000000000000 18 | 101110100000000000000 19 | 101110100000000000000 20 | 100000100000000000000 21 | 111111100000000000000 22 | -------------------------------------------------------------------------------- /QRCodeLib/Resources/qrvfr2.dat: -------------------------------------------------------------------------------- 1 | 1111111000000000001111111 2 | 1000001000000000001000001 3 | 1011101000000000001011101 4 | 1011101000000000001011101 5 | 1011101000000000001011101 6 | 1000001000000000001000001 7 | 1111111010101010101111111 8 | 0000000000000000000000000 9 | 0000001000000000000000000 10 | 0000000000000000000000000 11 | 0000001000000000000000000 12 | 0000000000000000000000000 13 | 0000001000000000000000000 14 | 0000000000000000000000000 15 | 0000001000000000000000000 16 | 0000000000000000000000000 17 | 0000001000000000111110000 18 | 0000000010000000100010000 19 | 1111111000000000101010000 20 | 1000001000000000100010000 21 | 1011101000000000111110000 22 | 1011101000000000000000000 23 | 1011101000000000000000000 24 | 1000001000000000000000000 25 | 1111111000000000000000000 26 | -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc10.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc13.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc15.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc16.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc17.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc18.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc20.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc22.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc24.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc26.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc28.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc28.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc30.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc32.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc34.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc34.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc36.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc40.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc42.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc42.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc44.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc44.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc46.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc46.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc48.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc48.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc50.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc50.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc52.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc52.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc54.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc54.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc56.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc56.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc58.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc58.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc60.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc60.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc62.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc62.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc64.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc64.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc66.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc66.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc68.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc68.dat -------------------------------------------------------------------------------- /QRCodeLib/Resources/rsc7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/Resources/rsc7.dat -------------------------------------------------------------------------------- /QRCodeLib/ThoughtWorks.QRCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/ThoughtWorks.QRCode.dll -------------------------------------------------------------------------------- /QRCodeLib/ThoughtWorks.QRCode.gpState: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /QRCodeLib/ThoughtWorks.QRCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/ThoughtWorks.QRCode.pdb -------------------------------------------------------------------------------- /QRCodeLib/ThoughtWorks.QRCode.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/ThoughtWorks.QRCode.suo -------------------------------------------------------------------------------- /QRCodeLib/data/QRCodeImage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ThoughtWorks.QRCode.Codec.Data 4 | { 5 | public interface QRCodeImage 6 | { 7 | int Width 8 | { 9 | get; 10 | 11 | } 12 | int Height 13 | { 14 | get; 15 | 16 | } 17 | int getPixel(int x, int y); 18 | } 19 | } -------------------------------------------------------------------------------- /QRCodeLib/exception/AlignmentPatternNotFoundException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace ThoughtWorks.QRCode.ExceptionHandler 3 | { 4 | [Serializable] 5 | public class AlignmentPatternNotFoundException:System.ArgumentException 6 | { 7 | internal String message = null; 8 | 9 | public override String Message 10 | { 11 | get 12 | { 13 | return message; 14 | } 15 | 16 | } 17 | public AlignmentPatternNotFoundException(String message) 18 | { 19 | this.message = message; 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /QRCodeLib/exception/DecodingFailedException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace ThoughtWorks.QRCode.ExceptionHandler 3 | { 4 | 5 | // Possible Exceptions 6 | // 7 | //DecodingFailedException 8 | //- SymbolNotFoundException 9 | // - FinderPatternNotFoundException 10 | // - AlignmentPatternNotFoundException 11 | //- SymbolDataErrorException 12 | // - IllegalDataBlockException 13 | // - InvalidVersionInfoException 14 | //- UnsupportedVersionException 15 | 16 | [Serializable] 17 | public class DecodingFailedException:System.ArgumentException 18 | { 19 | internal String message = null; 20 | 21 | public override String Message 22 | { 23 | get 24 | { 25 | return message; 26 | } 27 | 28 | } 29 | 30 | public DecodingFailedException(String message) 31 | { 32 | this.message = message; 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /QRCodeLib/exception/FinderPatternNotFoundException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace ThoughtWorks.QRCode.ExceptionHandler 3 | { 4 | [Serializable] 5 | public class FinderPatternNotFoundException:System.Exception 6 | { 7 | internal String message = null; 8 | public override String Message 9 | { 10 | get 11 | { 12 | return message; 13 | } 14 | 15 | } 16 | public FinderPatternNotFoundException(String message) 17 | { 18 | this.message = message; 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /QRCodeLib/exception/InvalidDataBlockException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace ThoughtWorks.QRCode.ExceptionHandler 3 | { 4 | [Serializable] 5 | public class InvalidDataBlockException:System.ArgumentException 6 | { 7 | internal String message = null; 8 | 9 | public override String Message 10 | { 11 | get 12 | { 13 | return message; 14 | } 15 | 16 | } 17 | 18 | public InvalidDataBlockException(String message) 19 | { 20 | this.message = message; 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /QRCodeLib/exception/InvalidVersionException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace ThoughtWorks.QRCode.ExceptionHandler 3 | { 4 | [Serializable] 5 | public class InvalidVersionException:VersionInformationException 6 | { 7 | internal String message; 8 | public override String Message 9 | { 10 | get 11 | { 12 | return message; 13 | } 14 | 15 | } 16 | 17 | public InvalidVersionException(String message) 18 | { 19 | this.message = message; 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /QRCodeLib/exception/InvalidVersionInfoException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace ThoughtWorks.QRCode.ExceptionHandler 3 | { 4 | [Serializable] 5 | public class InvalidVersionInfoException:VersionInformationException 6 | { 7 | internal String message = null; 8 | public override String Message 9 | { 10 | get 11 | { 12 | return message; 13 | } 14 | 15 | } 16 | 17 | public InvalidVersionInfoException(String message) 18 | { 19 | this.message = message; 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /QRCodeLib/exception/SymbolNotFoundException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace ThoughtWorks.QRCode.ExceptionHandler 3 | { 4 | [Serializable] 5 | public class SymbolNotFoundException:System.ArgumentException 6 | { 7 | internal String message = null; 8 | 9 | public override String Message 10 | { 11 | get 12 | { 13 | return message; 14 | } 15 | 16 | } 17 | 18 | public SymbolNotFoundException(String message) 19 | { 20 | this.message = message; 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /QRCodeLib/exception/VersionInformationException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace ThoughtWorks.QRCode.ExceptionHandler 3 | { 4 | [Serializable] 5 | public class VersionInformationException:System.ArgumentException 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /QRCodeLib/qrcode.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/qrcode.bmp -------------------------------------------------------------------------------- /QRCodeLib/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/qrcode.jpg -------------------------------------------------------------------------------- /QRCodeLib/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/QRCodeLib/qrcode.png -------------------------------------------------------------------------------- /QRCodeLib/util/Color.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace ThoughtWorks.QRCode.Codec.Util 3 | { 4 | 5 | public struct Color_Fields{ 6 | public readonly static int GRAY = 0xAAAAAA; 7 | public readonly static int LIGHTGRAY = 0xBBBBBB; 8 | public readonly static int DARKGRAY = 0x444444; 9 | public readonly static int BLACK = 0x000000; 10 | public readonly static int WHITE = 0xFFFFFF; 11 | public readonly static int BLUE = 0x8888FF; 12 | public readonly static int GREEN = 0x88FF88; 13 | public readonly static int LIGHTBLUE = 0xBBBBFF; 14 | public readonly static int LIGHTGREEN = 0xBBFFBB; 15 | public readonly static int RED = 0xFF88888; 16 | public readonly static int ORANGE = 0xFFFF88; 17 | public readonly static int LIGHTRED = 0xFFBBBB; 18 | } 19 | public interface Color 20 | { 21 | 22 | } 23 | } -------------------------------------------------------------------------------- /QRCodeLib/util/DebugCanvas.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Line = ThoughtWorks.QRCode.Geom.Line; 3 | using Point = ThoughtWorks.QRCode.Geom.Point; 4 | 5 | namespace ThoughtWorks.QRCode.Codec.Util 6 | { 7 | public interface DebugCanvas 8 | { 9 | void println(String str); 10 | void drawPoint(Point point, int color); 11 | void drawCross(Point point, int color); 12 | void drawPoints(Point[] points, int color); 13 | void drawLine(Line line, int color); 14 | void drawLines(Line[] lines, int color); 15 | void drawPolygon(Point[] points, int color); 16 | void drawMatrix(bool[][] matrix); 17 | } 18 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TemPOS 2 | Point-Of-Sale Software for Windows (C#/WPF) 3 | -------------------------------------------------------------------------------- /TaskManagerAccessService/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.ServiceProcess; 5 | using System.Text; 6 | 7 | namespace TaskManagerAccessService 8 | { 9 | public static class Program 10 | { 11 | public static int ExitCode; 12 | 13 | /// 14 | /// The main entry point for the application. 15 | /// 16 | static int Main(string[] args) 17 | { 18 | ExitCode = 0; 19 | var servicesToRun = new ServiceBase[] 20 | { 21 | new TaskManagerHandlerService() 22 | }; 23 | ServiceBase.Run(servicesToRun); 24 | return ExitCode; 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TaskManagerAccessService/TextEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace TaskManagerAccessService 4 | { 5 | public delegate void TextEventHandler(object sender, TextEventArgs args); 6 | 7 | public class TextEventArgs : EventArgs 8 | { 9 | public string Text 10 | { 11 | get; 12 | private set; 13 | } 14 | public TextEventArgs(string text) 15 | { 16 | Text = text; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /TaskManagerAccessServiceUninstaller/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TemPOS/CustomerEditorControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for CustomerEditorControl.xaml 19 | /// 20 | public partial class CustomerEditorControl : UserControl 21 | { 22 | public CustomerEditorControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/CustomerMaintenanceControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for CustomerMaintenanceControl.xaml 19 | /// 20 | public partial class CustomerMaintenanceControl : UserControl 21 | { 22 | public CustomerMaintenanceControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/DeliveryEditorControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for DeliveryEditorControl.xaml 19 | /// 20 | public partial class DeliveryEditorControl : UserControl 21 | { 22 | public DeliveryEditorControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/DeliveryMaintenanceControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for DeliveryMaintenanceControl.xaml 19 | /// 20 | public partial class DeliveryMaintenanceControl : UserControl 21 | { 22 | public DeliveryMaintenanceControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/EmployeeEditorDirectDepositControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for EmployeeEditorDirectDepositControl.xaml 19 | /// 20 | public partial class EmployeeEditorDirectDepositControl : UserControl 21 | { 22 | public EmployeeEditorDirectDepositControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/EmployeeScheduleEditorControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for EmployeeScheduleEditorControl.xaml 19 | /// 20 | public partial class EmployeeScheduleEditorControl : UserControl 21 | { 22 | public EmployeeScheduleEditorControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/EventHandlers/ButtonTouchInputClickEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | 4 | namespace TemPOS.EventHandlers 5 | { 6 | [Obfuscation(Exclude = true)] 7 | public delegate void ButtonTouchInputClickEventHandler(object sender, ButtonTouchInputClickArgs args); 8 | 9 | [Obfuscation(Exclude = true)] 10 | public class ButtonTouchInputClickArgs : EventArgs 11 | { 12 | public int ButtonIndex 13 | { 14 | get; 15 | set; 16 | } 17 | public ButtonTouchInputClickArgs(int buttonIndex) 18 | { 19 | ButtonIndex = buttonIndex; 20 | } 21 | } 22 | } 23 | 24 | -------------------------------------------------------------------------------- /TemPOS/EventHandlers/CancelableEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | 4 | namespace TemPOS.EventHandlers 5 | { 6 | [Obfuscation(Exclude = true)] 7 | public delegate void CancelableEventHandler(object sender, CancelableEventArgs args); 8 | 9 | [Obfuscation(Exclude = true)] 10 | public class CancelableEventArgs : EventArgs 11 | { 12 | public bool Cancel 13 | { 14 | get; set; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /TemPOS/EventHandlers/CouponValueChangedEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using PosModels; 4 | using TemPOS.Types; 5 | 6 | namespace TemPOS.EventHandlers 7 | { 8 | [Obfuscation(Exclude = true)] 9 | public delegate void CouponValueChangedHandler(object sender, CouponValueChangedArgs args); 10 | 11 | [Obfuscation(Exclude = true)] 12 | public class CouponValueChangedArgs : EventArgs 13 | { 14 | public Coupon ChangedCoupon 15 | { 16 | get; 17 | private set; 18 | } 19 | 20 | public CouponFieldName FieldName 21 | { 22 | get; 23 | private set; 24 | } 25 | 26 | public CouponValueChangedArgs(Coupon coupon, CouponFieldName field) 27 | { 28 | ChangedCoupon = coupon; 29 | FieldName = field; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /TemPOS/EventHandlers/ItemTaxValueChangedEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using PosModels; 4 | using TemPOS.Types; 5 | 6 | namespace TemPOS.EventHandlers 7 | { 8 | [Obfuscation(Exclude = true)] 9 | public delegate void TaxValueChangedHandler(object sender, TaxValueChangedArgs args); 10 | 11 | [Obfuscation(Exclude = true)] 12 | public class TaxValueChangedArgs : EventArgs 13 | { 14 | public Tax ChangedTax 15 | { 16 | get; 17 | private set; 18 | } 19 | 20 | public TaxFieldName FieldName 21 | { 22 | get; 23 | private set; 24 | } 25 | 26 | public TaxValueChangedArgs(Tax tax, TaxFieldName field) 27 | { 28 | ChangedTax = tax; 29 | FieldName = field; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /TemPOS/EventHandlers/ItemValueChangedEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using PosModels; 4 | using TemPOS.Types; 5 | 6 | namespace TemPOS.EventHandlers 7 | { 8 | [Obfuscation(Exclude = true)] 9 | public delegate void ItemValueChangedHandler(object sender, ItemValueChangedArgs args); 10 | 11 | [Obfuscation(Exclude = true)] 12 | public class ItemValueChangedArgs : EventArgs 13 | { 14 | public Item ChangedItem 15 | { 16 | get; 17 | private set; 18 | } 19 | 20 | public ItemFieldName FieldName 21 | { 22 | get; 23 | private set; 24 | } 25 | 26 | public ItemValueChangedArgs(Item item, ItemFieldName field) 27 | { 28 | ChangedItem = item; 29 | FieldName = field; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /TemPOS/EventHandlers/UserLoginEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using PosModels; 4 | 5 | namespace TemPOS.EventHandlers 6 | { 7 | [Obfuscation(Exclude = true)] 8 | public delegate void UserLoginEventHandler(object sender, UserLoginEventArgs args); 9 | 10 | [Obfuscation(Exclude = true)] 11 | public class UserLoginEventArgs : EventArgs 12 | { 13 | public Employee Employee 14 | { 15 | get; 16 | private set; 17 | } 18 | 19 | public UserLoginEventArgs(Employee employee) 20 | { 21 | this.Employee = employee; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /TemPOS/Exceptions/WtfException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace TemPOS.Exceptions 7 | { 8 | public class WtfException : Exception 9 | { 10 | public string Text 11 | { 12 | get; 13 | private set; 14 | } 15 | 16 | public WtfException() 17 | { 18 | Text = null; 19 | } 20 | 21 | public WtfException(string text) 22 | { 23 | Text = text; 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /TemPOS/GeneralSettingsOperationalPreferencesControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for GeneralSettingsOperationalPreferencesControl.xaml 19 | /// 20 | public partial class GeneralSettingsOperationalPreferencesControl : UserControl 21 | { 22 | public GeneralSettingsOperationalPreferencesControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/GiftCardMaintenanceControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for GiftCardMaintenanceControl.xaml 19 | /// 20 | public partial class GiftCardMaintenanceControl : UserControl 21 | { 22 | public GiftCardMaintenanceControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/OrderEntryNonOrderCommandsControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for OrderEntryNonOrderCommandsControl.xaml 19 | /// 20 | public partial class OrderEntryNonOrderCommandsControl : UserControl 21 | { 22 | public OrderEntryNonOrderCommandsControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/ProgramLogoControl.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /TemPOS/PurchasingMaintenanceControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for PurchasingMaintenanceControl.xaml 19 | /// 20 | public partial class PurchasingMaintenanceControl : UserControl 21 | { 22 | public PurchasingMaintenanceControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/Resources/AddItemButtonImage.sql: -------------------------------------------------------------------------------- 1 | if NOT Exists(select * from sys.columns where Name = N'ItemButtonImage' 2 | and Object_ID = Object_ID(N'Item')) 3 | begin 4 | ALTER TABLE Item ADD ItemButtonImage varbinary(max) NULL 5 | end -------------------------------------------------------------------------------- /TemPOS/Resources/AddItemGrouping-Part3.sql: -------------------------------------------------------------------------------- 1 | CREATE PROCEDURE [dbo].[AddTicketItem] 2 | ( 3 | @TicketItemYear smallint, 4 | @TicketItemTicketId int, 5 | @TicketItemItemId int, 6 | @TicketItemQuantity smallint, 7 | @TicketItemPrice float, 8 | @TicketItemOrderTime datetime, 9 | @TicketItemPreparedTime datetime, 10 | @TicketItemParentTicketItemId int, 11 | @TicketItemId int OUTPUT 12 | ) 13 | AS 14 | EXTERNAL NAME PointOfSale.TicketItem.AddTicketItem -------------------------------------------------------------------------------- /TemPOS/Resources/AddTicketItemFireTime.sql: -------------------------------------------------------------------------------- 1 | if NOT Exists(select * from sys.columns where Name = N'TicketItemFireTime' 2 | and Object_ID = Object_ID(N'TicketItem')) 3 | begin 4 | ALTER TABLE TicketItem ADD TicketItemFireTime datetime 5 | end -------------------------------------------------------------------------------- /TemPOS/Resources/EnableClrScript.sql: -------------------------------------------------------------------------------- 1 | sp_configure 'show advanced options', 1; 2 | GO 3 | RECONFIGURE; 4 | GO 5 | sp_configure 'clr enabled', 1; 6 | GO 7 | RECONFIGURE; 8 | GO 9 | -------------------------------------------------------------------------------- /TemPOS/Resources/Images/GoUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemPOS/Resources/Images/GoUp.png -------------------------------------------------------------------------------- /TemPOS/Resources/Images/drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemPOS/Resources/Images/drive.png -------------------------------------------------------------------------------- /TemPOS/Resources/Images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemPOS/Resources/Images/file.png -------------------------------------------------------------------------------- /TemPOS/Resources/Images/floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemPOS/Resources/Images/floppy.png -------------------------------------------------------------------------------- /TemPOS/Resources/Images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemPOS/Resources/Images/folder.png -------------------------------------------------------------------------------- /TemPOS/Resources/InstallDatabaseScript.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemPOS/Resources/InstallDatabaseScript.sql -------------------------------------------------------------------------------- /TemPOS/Resources/PosResourceDictionary.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /TemPOS/Resources/pos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemPOS/Resources/pos.gif -------------------------------------------------------------------------------- /TemPOS/SeatingReservationControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for SeatingReservationControl.xaml 19 | /// 20 | public partial class SeatingReservationControl : UserControl 21 | { 22 | public SeatingReservationControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/TemPOS-DB.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemPOS/TemPOS-DB.sdf -------------------------------------------------------------------------------- /TemPOS/TemPOS.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | K:\ClickOnceWebRoot\TemPOS\|H:\Win8Users\JoshGuyette\Desktop\temposstore\publish\|Z:\temposstore\publish\|publish\ 5 | http://tempos.no-ip.org:18080/TemPOS/|http://localhost:18080/TemPOS/|http://localhost/TemPOS/|http://tempos.no-ip.org/TemPOS/|http://tempos.no-ip.org/publish/ 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /TemPOS/Tempos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemPOS/Tempos.ico -------------------------------------------------------------------------------- /TemPOS/Types/BranchType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace TemPOS.Types 7 | { 8 | public enum BranchType 9 | { 10 | None, 11 | Middle, 12 | Last, 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /TemPOS/Types/CategoryFieldName.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace TemPOS.Types 7 | { 8 | public enum CategoryFieldName 9 | { 10 | DisplayIndex, 11 | Name 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TemPOS/Types/CouponFieldName.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace TemPOS.Types 7 | { 8 | public enum CouponFieldName 9 | { 10 | ApplyToAll, 11 | ThirdParty, 12 | Description, 13 | Amount, 14 | IsPercentage, 15 | IsActive, 16 | IsExclusive, 17 | Items, 18 | Categories, 19 | AmountLimit, 20 | LimitPerTicket 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /TemPOS/Types/ItemFieldName.cs: -------------------------------------------------------------------------------- 1 | namespace TemPOS.Types 2 | { 3 | public enum ItemFieldName 4 | { 5 | Category, 6 | FullName, 7 | PosName, 8 | Price, 9 | OptionSet1, 10 | OptionSet2, 11 | OptionSet3, 12 | PrintDestination, 13 | IsEnabled, 14 | Tax, 15 | SpecialPricing, 16 | IsReturnable, 17 | IsTaxExemptable, 18 | IsFired, 19 | IsOutOfStock, 20 | IsGrouping, 21 | Recipe, 22 | Groupings 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /TemPOS/Types/ItemOptionFieldName.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace TemPOS.Types 7 | { 8 | public enum ItemOptionFieldName 9 | { 10 | SetId, 11 | Value, 12 | CostForExtra, 13 | UsesItemId, 14 | UsesIngredientId 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /TemPOS/Types/ItemTaxFieldName.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace TemPOS.Types 7 | { 8 | public enum TaxFieldName 9 | { 10 | Description, 11 | Percentage 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TemPOS/Types/Strings.Dutch.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Reflection; 5 | using System.Text; 6 | using PosModels.Types; 7 | 8 | namespace TemPOS.Types 9 | { 10 | [Obfuscation(Exclude = true)] 11 | public partial class Strings : StringsCore 12 | { 13 | public static readonly Dictionary Dutch = new Dictionary(); 14 | 15 | public static void InitializeDutch() 16 | { 17 | 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /TemPOS/Types/Strings.French.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Reflection; 3 | 4 | namespace TemPOS.Types 5 | { 6 | [Obfuscation(Exclude = true)] 7 | public partial class Strings 8 | { 9 | public static readonly Dictionary French = new Dictionary(); 10 | 11 | public static void InitializeFrench() 12 | { 13 | 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /TemPOS/Types/Strings.German.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Reflection; 3 | 4 | namespace TemPOS.Types 5 | { 6 | [Obfuscation(Exclude = true)] 7 | public partial class Strings 8 | { 9 | public static readonly Dictionary German = new Dictionary(); 10 | 11 | public static void InitializeGerman() 12 | { 13 | 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /TemPOS/Types/Strings.Italian.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Reflection; 3 | 4 | namespace TemPOS.Types 5 | { 6 | [Obfuscation(Exclude = true)] 7 | public partial class Strings 8 | { 9 | public static readonly Dictionary Italian = new Dictionary(); 10 | 11 | public static void InitializeItalian() 12 | { 13 | 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /TemPOS/Types/Strings.Portuguese.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Reflection; 5 | using System.Text; 6 | using PosModels.Types; 7 | 8 | namespace TemPOS.Types 9 | { 10 | [Obfuscation(Exclude = true)] 11 | public partial class Strings : StringsCore 12 | { 13 | public static readonly Dictionary Portuguese = new Dictionary(); 14 | 15 | public static void InitializePortuguese() 16 | { 17 | 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /TemPOS/Types/TicketSelectionShow.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace TemPOS 7 | { 8 | public enum TicketSelectionShow 9 | { 10 | All, 11 | AllDay, 12 | AllOpen, 13 | Future, 14 | MyOpen, 15 | Closed, 16 | Canceled, 17 | Dispatched, 18 | Range 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /TemPOS/VendorMaintenanceControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for VendorMaintenanceControl.xaml 19 | /// 20 | public partial class VendorMaintenanceControl : UserControl 21 | { 22 | public VendorMaintenanceControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/VendorOrderControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Navigation; 13 | using System.Windows.Shapes; 14 | 15 | namespace TemPOS 16 | { 17 | /// 18 | /// Interaction logic for VendorOrderControl.xaml 19 | /// 20 | public partial class VendorOrderControl : UserControl 21 | { 22 | public VendorOrderControl() 23 | { 24 | InitializeComponent(); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /TemPOS/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /TemPOS/settings.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemPOS/settings.config -------------------------------------------------------------------------------- /Tempos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/Tempos.ico -------------------------------------------------------------------------------- /TemposClientAdministration/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /TemposClientAdministration/Icons/Bulb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposClientAdministration/Icons/Bulb.ico -------------------------------------------------------------------------------- /TemposClientAdministration/Icons/Computers.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposClientAdministration/Icons/Computers.ico -------------------------------------------------------------------------------- /TemposClientAdministration/Icons/DefaultTrayIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposClientAdministration/Icons/DefaultTrayIcon.ico -------------------------------------------------------------------------------- /TemposClientAdministration/Icons/Error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposClientAdministration/Icons/Error.ico -------------------------------------------------------------------------------- /TemposClientAdministration/Icons/Inactive.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposClientAdministration/Icons/Inactive.ico -------------------------------------------------------------------------------- /TemposClientAdministration/Icons/Tempos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposClientAdministration/Icons/Tempos.ico -------------------------------------------------------------------------------- /TemposClientAdministration/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /TemposClientAdministration/TaskbarNotification/Interop/IconState.cs: -------------------------------------------------------------------------------- 1 | namespace TaskbarNotification.Interop 2 | { 3 | /// 4 | /// The state of the icon - can be set to 5 | /// hide the icon. 6 | /// 7 | public enum IconState 8 | { 9 | /// 10 | /// The icon is visible. 11 | /// 12 | Visible = 0x00, 13 | /// 14 | /// Hide the icon. 15 | /// 16 | Hidden = 0x01, 17 | 18 | /// 19 | /// The icon is shared - currently not supported, thus commented out. 20 | /// 21 | //Shared = 0x02 22 | } 23 | } -------------------------------------------------------------------------------- /TemposClientAdministration/TaskbarNotification/Interop/Point.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.InteropServices; 2 | 3 | namespace TaskbarNotification.Interop 4 | { 5 | /// 6 | /// Win API struct providing coordinates for a single point. 7 | /// 8 | [StructLayout(LayoutKind.Sequential)] 9 | public struct Point 10 | { 11 | public int X; 12 | public int Y; 13 | } 14 | } -------------------------------------------------------------------------------- /TemposLanguageProcessor/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TemposLanguageProcessor/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | using TemposLanguageProcessor.Extractor; 8 | using TemposLanguageProcessor.Translation; 9 | using TemposLanguageProcessor.Types; 10 | 11 | namespace TemposLanguageProcessor 12 | { 13 | /// 14 | /// Interaction logic for App.xaml 15 | /// 16 | public partial class App : Application 17 | { 18 | private void Application_Startup(object sender, StartupEventArgs e) 19 | { 20 | 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /TemposLanguageProcessor/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TemposLanguageProcessor/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /TemposLanguageProcessor/TestClass.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using TemposLanguageProcessor.Types; 4 | using System.Linq; 5 | using System.Text; 6 | 7 | namespace TemposLanguageProcessor 8 | { 9 | public class TestClass 10 | { 11 | public readonly string Test = Strings.Number123; 12 | 13 | public void Testing() 14 | { 15 | Console.WriteLine(Strings.Testing); 16 | Console.WriteLine(Strings.ThisIsATest); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /TemposLanguageProcessor/Types/Strings.English.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Reflection; 3 | 4 | namespace TemposLanguageProcessor.Types 5 | { 6 | [Obfuscation(Exclude = true)] 7 | public partial class Strings 8 | { 9 | public static readonly Dictionary English = new Dictionary(); 10 | 11 | public static void InitializeEnglish() 12 | { 13 | #region General 14 | English.Add("Warning", "Warning"); 15 | #endregion 16 | 17 | #region TestClass 18 | English.Add("Number123", "123"); 19 | English.Add("Testing", "Testing"); 20 | English.Add("ThisIsATest", "this is a test"); 21 | #endregion 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /TemposLibrary/AuthenticationRequestEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace TemposLibrary 4 | { 5 | public delegate void AuthenticationRequestEventHandler(object sender, AuthenticationRequestEventArgs args); 6 | 7 | public class AuthenticationRequestEventArgs : EventArgs 8 | { 9 | public bool Allow 10 | { 11 | get; 12 | set; 13 | } 14 | 15 | public byte[] IdentityHash 16 | { 17 | get; 18 | private set; 19 | } 20 | 21 | public AuthenticationRequestEventArgs(byte[] identityHash) 22 | { 23 | Allow = false; 24 | IdentityHash = identityHash; 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /TemposLibrary/ExceptionEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace TemposLibrary 4 | { 5 | public delegate void ExceptionEventHandler(object sender, ExceptionEventArgs args); 6 | 7 | public class ExceptionEventArgs : EventArgs 8 | { 9 | public Exception Exception 10 | { 11 | get; 12 | private set; 13 | } 14 | public ExceptionEventArgs(Exception ex) 15 | { 16 | Exception = ex; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /TemposLibrary/TextEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace TemposLibrary 4 | { 5 | public delegate void TextEventHandler(object sender, TextEventArgs args); 6 | 7 | public class TextEventArgs : EventArgs 8 | { 9 | public string Text 10 | { 11 | get; 12 | private set; 13 | } 14 | public TextEventArgs(string text) 15 | { 16 | Text = text; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /TemposUpdateInstaller/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TemposUpdateInstaller/TemposUpdateInstaller.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /TemposWebApplication/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace TemposWebApplication 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /TemposWebApplication/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace TemposWebApplication 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /TemposWebApplication/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web.Http; 5 | 6 | namespace TemposWebApplication 7 | { 8 | public static class WebApiConfig 9 | { 10 | public static void Register(HttpConfiguration config) 11 | { 12 | config.Routes.MapHttpRoute( 13 | name: "DefaultApi", 14 | routeTemplate: "api/{controller}/{id}", 15 | defaults: new { id = RouteParameter.Optional } 16 | ); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import url("jquery.ui.core.css"); 11 | 12 | @import url("jquery.ui.accordion.css"); 13 | @import url("jquery.ui.autocomplete.css"); 14 | @import url("jquery.ui.button.css"); 15 | @import url("jquery.ui.datepicker.css"); 16 | @import url("jquery.ui.dialog.css"); 17 | @import url("jquery.ui.progressbar.css"); 18 | @import url("jquery.ui.resizable.css"); 19 | @import url("jquery.ui.selectable.css"); 20 | @import url("jquery.ui.slider.css"); 21 | @import url("jquery.ui.tabs.css"); 22 | -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;cursor:default}* html .ui-autocomplete{width:1px}.ui-menu{list-style:none;padding:2px;margin:0;display:block;float:left}.ui-menu .ui-menu{margin-top:-3px}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;float:left;clear:left;width:100%}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:.2em .4em;line-height:1.5;zoom:1}.ui-menu .ui-menu-item a.ui-state-hover,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px} -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.core.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /TemposWebApplication/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /TemposWebApplication/Controllers/AdminController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace TemposWebApplication.Controllers 8 | { 9 | public class AdminController : Controller 10 | { 11 | // 12 | // GET: /Admin/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | 19 | public ActionResult Schedule() 20 | { 21 | return View(); 22 | } 23 | 24 | public ActionResult Timesheet() 25 | { 26 | return View(); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /TemposWebApplication/Controllers/CustomerController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace TemposWebApplication.Controllers 8 | { 9 | public class CustomerController : Controller 10 | { 11 | // 12 | // GET: /Customer/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | 19 | public ActionResult Reservation() 20 | { 21 | return View(); 22 | } 23 | 24 | public ActionResult Loyality() 25 | { 26 | return View(); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /TemposWebApplication/Controllers/EmployeeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace TemposWebApplication.Controllers 8 | { 9 | public class EmployeeController : Controller 10 | { 11 | // 12 | // GET: /Employee/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | 19 | public ActionResult Payroll() 20 | { 21 | return View(); 22 | } 23 | 24 | public ActionResult Schedule() 25 | { 26 | return View(); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /TemposWebApplication/Controllers/JobsController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace TemposWebApplication.Controllers 8 | { 9 | public class JobsController : Controller 10 | { 11 | // 12 | // GET: /Jobs/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /TemposWebApplication/Controllers/MenuController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace TemposWebApplication.Controllers 8 | { 9 | public class MenuController : Controller 10 | { 11 | // 12 | // GET: /Menu/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | 19 | public ActionResult ItemDetails() 20 | { 21 | return View(); 22 | } 23 | 24 | public ActionResult Items() 25 | { 26 | return View(); 27 | } 28 | 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /TemposWebApplication/Controllers/OrderController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace TemposWebApplication.Controllers 8 | { 9 | public class OrderController : Controller 10 | { 11 | // 12 | // GET: /Order/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /TemposWebApplication/Controllers/ReportsController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace TemposWebApplication.Controllers 8 | { 9 | public class ReportsController : Controller 10 | { 11 | // 12 | // GET: /Reports/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /TemposWebApplication/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="TemposWebApplication.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /TemposWebApplication/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/accent.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/bullet.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/heroAccent.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/orderedList0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/orderedList0.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/orderedList1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/orderedList1.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/orderedList2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/orderedList2.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/orderedList3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/orderedList3.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/orderedList4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/orderedList4.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/orderedList5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/orderedList5.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/orderedList6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/orderedList6.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/orderedList7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/orderedList7.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/orderedList8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/orderedList8.png -------------------------------------------------------------------------------- /TemposWebApplication/Images/orderedList9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/Images/orderedList9.png -------------------------------------------------------------------------------- /TemposWebApplication/Scripts/_references.js: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | /// 4 | /// 5 | /// 6 | /// -------------------------------------------------------------------------------- /TemposWebApplication/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Login Failure"; 3 | } 4 | 5 |
6 |

@ViewBag.Title.

7 |

Unsuccessful login with service.

8 |
9 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Account/Manage.cshtml: -------------------------------------------------------------------------------- 1 | @model TemposWebApplication.Models.LocalPasswordModel 2 | @{ 3 | ViewBag.Title = "Manage Account"; 4 | } 5 | 6 |
7 |

@ViewBag.Title.

8 |
9 | 10 |

@ViewBag.StatusMessage

11 | 12 |

You're logged in as @User.Identity.Name.

13 | 14 | @if (ViewBag.HasLocalPassword) 15 | { 16 | @Html.Partial("_ChangePasswordPartial") 17 | } 18 | else 19 | { 20 | @Html.Partial("_SetPasswordPartial") 21 | } 22 | 23 |
24 | @Html.Action("RemoveExternalLogins") 25 | 26 |

Add an external login

27 | @Html.Action("ExternalLoginsList", new { ReturnUrl = ViewBag.ReturnUrl }) 28 |
29 | 30 | @section Scripts { 31 | @Scripts.Render("~/bundles/jqueryval") 32 | } 33 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Admin/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Index"; 3 | } 4 | 5 |

Index

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Admin/Schedule.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Schedule"; 3 | } 4 | 5 |

Schedule

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Admin/Timesheet.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Timesheet"; 3 | } 4 | 5 |

Timesheet

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Customer/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Index"; 3 | } 4 | 5 |

Index

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Customer/Loyality.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Loyality"; 3 | } 4 | 5 |

Loyality

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Customer/Reservation.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Reservation"; 3 | } 4 | 5 |

Reservation

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Employee/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Employee Home"; 3 | } 4 | 5 |

Index

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Employee/Payroll.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Payroll"; 3 | } 4 | 5 |

Payroll

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Employee/Schedule.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Schedule"; 3 | } 4 | 5 |

Schedule

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "About"; 3 | } 4 | 5 |
6 |

@ViewBag.Title.

7 |

@ViewBag.Message

8 |
9 | 10 |
11 |

12 | Use this area to provide additional information. 13 |

14 | 15 |

16 | Use this area to provide additional information. 17 |

18 | 19 |

20 | Use this area to provide additional information. 21 |

22 |
23 | 24 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Home/StoreLocator.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "StoreLocator"; 3 | } 4 | 5 |

StoreLocator

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Jobs/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Index"; 3 | } 4 | 5 |

Index

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Menu/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Index"; 3 | } 4 | 5 |

Menu

6 | @{ 7 | var sortList = PosModels.Category.GetAll().ToList(); 8 | sortList.Sort(); 9 | foreach (var category in sortList) 10 | { 11 | if (!category.IsDiscontinued) 12 | { 13 | @category.NameValue
14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Menu/ItemDetails.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Item Details"; 3 | } 4 | 5 |

Item Details

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Menu/Items.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Items"; 3 | } 4 | 5 |

Items

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Order/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Index"; 3 | } 4 | 5 |

Index

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/AdjustmentIngredientRecipe.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "AdjustmentIngredientRecipe"; 3 | } 4 | 5 |

AdjustmentIngredientRecipe

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/AdjustmentItem.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "AdjustmentItem"; 3 | } 4 | 5 |

AdjustmentItem

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/AdjustmentItemRecipe.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "AdjustmentItemRecipe"; 3 | } 4 | 5 |

AdjustmentItemRecipe

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/AdjustmentPrices.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "AdjustmentPrices"; 3 | } 4 | 5 |

AdjustmentPrices

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/AdjustmentTimesheet.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "AdjustmentTimesheet"; 3 | } 4 | 5 |

AdjustmentTimesheet

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/EmployeeSalesByCategory.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "EmployeeSalesByCategory"; 3 | } 4 | 5 |

EmployeeSalesByCategory

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/EmployeeSalesByItem.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "EmployeeSalesByItem"; 3 | } 4 | 5 |

EmployeeSalesByItem

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Index"; 3 | } 4 | 5 |

Index

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/InventoryAdjustments.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "InventoryAdjustments"; 3 | } 4 | 5 |

InventoryAdjustments

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/InventoryCurrent.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "InventoryCurrent"; 3 | } 4 | 5 |

InventoryCurrent

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/InventoryIngredientUsage.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "InventoryIngredientUsage"; 3 | } 4 | 5 |

InventoryIngredientUsage

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/LaborEmployeeHours.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "LaborEmployeeHours"; 3 | } 4 | 5 |

LaborEmployeeHours

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/LaborHourlyTotals.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "LaborHourlyTotals"; 3 | } 4 | 5 |

LaborHourlyTotals

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/RegisterDeposits.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "RegisterDeposits"; 3 | } 4 | 5 |

RegisterDeposits

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/RegisterFloatingDocking.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "RegisterFloatingDocking"; 3 | } 4 | 5 |

RegisterFloatingDocking

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/RegisterNoSales.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "RegisterNoSales"; 3 | } 4 | 5 |

RegisterNoSales

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/RegisterPayouts.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "RegisterPayouts"; 3 | } 4 | 5 |

RegisterPayouts

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/RegisterSafeDrops.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "RegisterSafeDrops"; 3 | } 4 | 5 |

RegisterSafeDrops

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/TicketCancels.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "TicketCancels"; 3 | } 4 | 5 |

TicketCancels

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/TicketRefunds.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "TicketRefunds"; 3 | } 4 | 5 |

TicketRefunds

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/TicketReturns.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "TicketReturns"; 3 | } 4 | 5 |

TicketReturns

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/TicketVoids.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "TicketVoids"; 3 | } 4 | 5 |

TicketVoids

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/TotalSalesByCategory.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "TotalSalesByCategory"; 3 | } 4 | 5 |

TotalSalesByCategory

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/TotalSalesByEmployee.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "TotalSalesByEmployee"; 3 | } 4 | 5 |

TotalSalesByEmployee

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/TotalSalesByItem.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "TotalSalesByItem"; 3 | } 4 | 5 |

TotalSalesByItem

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/WasteByCategory.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "WasteByCategory"; 3 | } 4 | 5 |

WasteByCategory

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/WasteByIngredient.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "WasteByIngredient"; 3 | } 4 | 5 |

WasteByIngredient

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Reports/WasteByItem.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "WasteByItem"; 3 | } 4 | 5 |

WasteByItem

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Setup/Categories.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Categories"; 3 | } 4 | 5 |

Categories

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Setup/Coupons.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Coupons"; 3 | } 4 | 5 |

Coupons

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Setup/Discounts.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Discounts"; 3 | } 4 | 5 |

Discounts

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Setup/EmployeeJobs.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "EmployeeJobs"; 3 | } 4 | 5 |

EmployeeJobs

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Setup/Employees.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Employees"; 3 | } 4 | 5 |

Employees

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Setup/HiringJobs.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "HiringJobs"; 3 | } 4 | 5 |

HiringJobs

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Setup/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Index"; 3 | } 4 | 5 |

Index

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Setup/Items.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Items"; 3 | } 4 | 5 |

Items

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Setup/Occasions.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Occasions"; 3 | } 4 | 5 |

Occasions

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Setup/Taxes.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Taxes"; 3 | } 4 | 5 |

Taxes

6 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Web.Mvc.HandleErrorInfo 2 | 3 | @{ 4 | ViewBag.Title = "Error"; 5 | } 6 | 7 |
8 |

Error.

9 |

An error occurred while processing your request.

10 |
11 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- 1 | @if (Request.IsAuthenticated) { 2 | 3 | Hello, @Html.ActionLink(User.Identity.Name, "Manage", "Account", routeValues: null, htmlAttributes: new { @class = "username", title = "Manage" })! 4 | @using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm" })) { 5 | @Html.AntiForgeryToken() 6 | Log off 7 | } 8 | 9 | } else { 10 |
    11 |
  • @Html.ActionLink("Register", "Register", "Account", routeValues: null, htmlAttributes: new { id = "registerLink" })
  • 12 |
  • @Html.ActionLink("Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" })
  • 13 |
14 | } 15 | -------------------------------------------------------------------------------- /TemposWebApplication/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /TemposWebApplication/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/TemposWebApplication/favicon.ico -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.AspNet.4.0.3.12153/DotNetOpenAuth.AspNet.4.0.3.12153.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.AspNet.4.0.3.12153/DotNetOpenAuth.AspNet.4.0.3.12153.nupkg -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.AspNet.4.0.3.12153/lib/net40-full/DotNetOpenAuth.AspNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.AspNet.4.0.3.12153/lib/net40-full/DotNetOpenAuth.AspNet.dll -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.Core.4.0.3.12153/DotNetOpenAuth.Core.4.0.3.12153.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.Core.4.0.3.12153/DotNetOpenAuth.Core.4.0.3.12153.nupkg -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.Core.dll -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153.nupkg -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OAuth.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OAuth.Consumer.dll -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.OAuth.Core.4.0.3.12153/DotNetOpenAuth.OAuth.Core.4.0.3.12153.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.OAuth.Core.4.0.3.12153/DotNetOpenAuth.OAuth.Core.4.0.3.12153.nupkg -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.OAuth.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.OAuth.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OAuth.dll -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.OpenId.Core.4.0.3.12153/DotNetOpenAuth.OpenId.Core.4.0.3.12153.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.OpenId.Core.4.0.3.12153/DotNetOpenAuth.OpenId.Core.4.0.3.12153.nupkg -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.OpenId.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OpenId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.OpenId.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OpenId.dll -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153.nupkg -------------------------------------------------------------------------------- /packages/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OpenId.RelyingParty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OpenId.RelyingParty.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/Content/App.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/Content/Web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/Redirect.VS11.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/Redirect.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/EntityFramework.5.0.0/tools/migrate.exe -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.20710.0/Microsoft.AspNet.Razor.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.Razor.2.0.20710.0/Microsoft.AspNet.Razor.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/System.Web.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.Data.2.0.20710.0/Microsoft.AspNet.WebPages.Data.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebPages.Data.2.0.20710.0/Microsoft.AspNet.WebPages.Data.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.Data.2.0.20710.0/lib/net40/WebMatrix.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebPages.Data.2.0.20710.0/lib/net40/WebMatrix.Data.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0/lib/net40/Microsoft.Web.WebPages.OAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0/lib/net40/Microsoft.Web.WebPages.OAuth.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.WebData.2.0.20710.0/Microsoft.AspNet.WebPages.WebData.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebPages.WebData.2.0.20710.0/Microsoft.AspNet.WebPages.WebData.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.WebData.2.0.20710.0/lib/net40/WebMatrix.WebData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.AspNet.WebPages.WebData.2.0.20710.0/lib/net40/WebMatrix.WebData.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.5.3/Modernizr.2.5.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Modernizr.2.5.3/Modernizr.2.5.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.6/Newtonsoft.Json.4.5.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Newtonsoft.Json.4.5.6/Newtonsoft.Json.4.5.6.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.6/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/Newtonsoft.Json.4.5.6/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.1.0/WebGrease.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/WebGrease.1.1.0/WebGrease.1.1.0.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.1.0/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/WebGrease.1.1.0/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.1.0/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/WebGrease.1.1.0/lib/WebGrease.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.1.0/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/WebGrease.1.1.0/tools/WG.exe -------------------------------------------------------------------------------- /packages/jQuery.1.7.1.1/jQuery.1.7.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.1.7.1.1/jQuery.1.7.1.1.nupkg -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import url("jquery.ui.core.css"); 11 | 12 | @import url("jquery.ui.accordion.css"); 13 | @import url("jquery.ui.autocomplete.css"); 14 | @import url("jquery.ui.button.css"); 15 | @import url("jquery.ui.datepicker.css"); 16 | @import url("jquery.ui.dialog.css"); 17 | @import url("jquery.ui.progressbar.css"); 18 | @import url("jquery.ui.resizable.css"); 19 | @import url("jquery.ui.selectable.css"); 20 | @import url("jquery.ui.slider.css"); 21 | @import url("jquery.ui.tabs.css"); 22 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;cursor:default}* html .ui-autocomplete{width:1px}.ui-menu{list-style:none;padding:2px;margin:0;display:block;float:left}.ui-menu .ui-menu{margin-top:-3px}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;float:left;clear:left;width:100%}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:.2em .4em;line-height:1.5;zoom:1}.ui-menu .ui-menu-item a.ui-state-hover,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/jQuery.UI.Combined.1.8.20.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.UI.Combined.1.8.20.1/jQuery.UI.Combined.1.8.20.1.nupkg -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.9.0.1/jQuery.Validation.1.9.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/jQuery.Validation.1.9.0.1/jQuery.Validation.1.9.0.1.nupkg -------------------------------------------------------------------------------- /packages/knockoutjs.2.1.0/knockoutjs.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightness/TemPOS/60c1095c85e133c8abdcd6cd916bad4dba6ee7cd/packages/knockoutjs.2.1.0/knockoutjs.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | --------------------------------------------------------------------------------