├── .gitattributes ├── .gitignore ├── README.md ├── SMSystem.Core ├── ConscienceCard.cs ├── Customers.cs ├── Damage.cs ├── Income.cs ├── Materails.cs ├── OutCome.cs ├── OutComeMaterail.cs ├── OutOfConscinesMaterials.cs ├── SMSystem.Core.csproj ├── Stores.cs ├── Suppliers.cs └── User.cs ├── SMSystem.Data ├── ConfigDictionary.cs ├── EFSqlServer │ ├── ConscienceCardEntity.cs │ ├── CustomersEntity.cs │ ├── DBContext.cs │ ├── DamageEntity.cs │ ├── DataBaseBackUpAndRestor.cs │ ├── IncomeEntity.cs │ ├── MaterailsEntity.cs │ ├── OutComeEntity.cs │ ├── OutComeMaterialsEntity.cs │ ├── OutOfConsinceMaterialEntity.cs │ ├── SppliersEntity.cs │ ├── StoreEntity.cs │ └── UserEntity.cs ├── IDataHelper.cs ├── Migrations │ ├── 20221003112926_AddTable.Designer.cs │ ├── 20221003112926_AddTable.cs │ ├── 20221004051618_UpdateMaterials.Designer.cs │ ├── 20221004051618_UpdateMaterials.cs │ └── DBContextModelSnapshot.cs ├── Properties │ └── launchSettings.json └── SMSystem.Data.csproj ├── SMSystem.Tests ├── DataTests │ ├── DbContextTests.cs │ └── StoreEntityTests.cs └── SMSystem.Tests.csproj ├── SMSystem.Web ├── Code │ └── Config.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── Store │ │ ├── List.cshtml │ │ └── List.cshtml.cs │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ ├── launchSettings.json │ ├── serviceDependencies.json │ └── serviceDependencies.local.json ├── SMSystem.Web.csproj ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── SMSystem ├── 2022-09-08_123734.ico ├── Code │ ├── ComponentsObject.cs │ ├── ContainerConfig.cs │ ├── DependencyInjection.cs │ ├── MainClass.cs │ ├── MessageCollection.cs │ └── UpdateData.cs ├── Gui │ ├── AboutBox.Designer.cs │ ├── AboutBox.cs │ ├── AboutBox.resx │ ├── Analyze │ │ ├── AnalyzeUserControl.Designer.cs │ │ ├── AnalyzeUserControl.cs │ │ └── AnalyzeUserControl.resx │ ├── CustomersGui │ │ ├── AddCustomerConscienceCard.Designer.cs │ │ ├── AddCustomerConscienceCard.cs │ │ ├── AddCustomerConscienceCard.resx │ │ ├── CustomerAddForm.Designer.cs │ │ ├── CustomerAddForm.cs │ │ ├── CustomerAddForm.resx │ │ ├── CustomerConscienceCardUserForm.Designer.cs │ │ ├── CustomerConscienceCardUserForm.cs │ │ ├── CustomerConscienceCardUserForm.resx │ │ ├── CustomerUserControl.Designer.cs │ │ ├── CustomerUserControl.cs │ │ └── CustomerUserControl.resx │ ├── DamageGui │ │ ├── DamageAddForm.Designer.cs │ │ ├── DamageAddForm.cs │ │ ├── DamageAddForm.resx │ │ ├── DamageUserControl.Designer.cs │ │ ├── DamageUserControl.cs │ │ └── DamageUserControl.resx │ ├── HomeGui │ │ ├── HomeUserControl.Designer.cs │ │ ├── HomeUserControl.cs │ │ └── HomeUserControl.resx │ ├── IncomeGui │ │ ├── DamgeActionBox.Designer.cs │ │ ├── DamgeActionBox.cs │ │ ├── DamgeActionBox.resx │ │ ├── IncomeAddForm.Designer.cs │ │ ├── IncomeAddForm.cs │ │ ├── IncomeAddForm.resx │ │ ├── IncomeUserControl.Designer.cs │ │ ├── IncomeUserControl.cs │ │ └── IncomeUserControl.resx │ ├── MaterailsGui │ │ ├── MaterailsAddForm.Designer.cs │ │ ├── MaterailsAddForm.cs │ │ ├── MaterailsAddForm.resx │ │ ├── MaterailsUserControl.Designer.cs │ │ ├── MaterailsUserControl.cs │ │ └── MaterailsUserControl.resx │ ├── OtherGui │ │ ├── LoadingUser.Designer.cs │ │ ├── LoadingUser.cs │ │ ├── LoadingUser.resx │ │ ├── NotificaitonPanel.Designer.cs │ │ ├── NotificaitonPanel.cs │ │ ├── NotificaitonPanel.resx │ │ ├── NotifictionUser.Designer.cs │ │ ├── NotifictionUser.cs │ │ ├── NotifictionUser.resx │ │ ├── PrintDialogForm.Designer.cs │ │ ├── PrintDialogForm.cs │ │ └── PrintDialogForm.resx │ ├── OutComeGui │ │ ├── OutComeAddForm.Designer.cs │ │ ├── OutComeAddForm.cs │ │ ├── OutComeAddForm.resx │ │ ├── OutComeUserControl.Designer.cs │ │ ├── OutComeUserControl.cs │ │ └── OutComeUserControl.resx │ ├── OutOfConscince │ │ ├── OutOfConscenseAddForm.Designer.cs │ │ ├── OutOfConscenseAddForm.cs │ │ ├── OutOfConscenseAddForm.resx │ │ ├── OutOfConscenseUserControl.Designer.cs │ │ ├── OutOfConscenseUserControl.cs │ │ └── OutOfConscenseUserControl.resx │ ├── Reports │ │ ├── ReceiptUserControl.Designer.cs │ │ ├── ReceiptUserControl.cs │ │ └── ReceiptUserControl.resx │ ├── SettingsForm.Designer.cs │ ├── SettingsForm.cs │ ├── SettingsForm.resx │ ├── StartForm.Designer.cs │ ├── StartForm.cs │ ├── StartForm.resx │ ├── StoresGui │ │ ├── StoreAddForm.Designer.cs │ │ ├── StoreAddForm.cs │ │ ├── StoreAddForm.resx │ │ ├── StoreUserControl.Designer.cs │ │ ├── StoreUserControl.cs │ │ └── StoreUserControl.resx │ ├── SuppliersGui │ │ ├── SupplierAddForm.Designer.cs │ │ ├── SupplierAddForm.cs │ │ ├── SupplierAddForm.resx │ │ ├── SupplierUserControl.Designer.cs │ │ ├── SupplierUserControl.cs │ │ └── SupplierUserControl.resx │ └── UserGui │ │ ├── UserAddForm.Designer.cs │ │ ├── UserAddForm.cs │ │ ├── UserAddForm.resx │ │ ├── UserLogin.Designer.cs │ │ ├── UserLogin.cs │ │ ├── UserLogin.resx │ │ ├── UserUserControl.Designer.cs │ │ ├── UserUserControl.cs │ │ └── UserUserControl.resx ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── 2022-09-08_123734.ico │ ├── 2022-09-08_123734.jpg │ ├── Delete_32px.png │ ├── Loading_icon.gif │ ├── Notification_128px.png │ ├── about_32px.png │ ├── add_32px.png │ ├── chart_32px.png │ ├── combo_chart_32px.png │ ├── department_store_32px.png │ ├── edit_32px.png │ ├── help_32px.png │ ├── home_32px.png │ ├── icons8_Close_80px.png │ ├── icons8_Notification_128px.png │ ├── icons8_Walmart_200px.png │ ├── icons8_box_96px_1.png │ ├── icons8_csv_80px_1.png │ ├── icons8_customer_80px_1.png │ ├── icons8_damaged_parcel_32px_1.png │ ├── icons8_damaged_parcel_96px.png │ ├── icons8_data_backup_80px.png │ ├── icons8_database_restore_80px_1.png │ ├── icons8_export_32px.png │ ├── icons8_external_32px.png │ ├── icons8_external_80px.png │ ├── icons8_image_200px_1.png │ ├── icons8_internal_32px_1.png │ ├── icons8_internal_96px_1.png │ ├── icons8_memo_32px.png │ ├── icons8_moleskine_32px_1.png │ ├── icons8_near_me_160px.png │ ├── icons8_ok_200px.png │ ├── icons8_printer_96px.png │ ├── icons8_scan_stock_128px.png │ ├── icons8_select_users_32px.png │ ├── icons8_select_users_32px_1.png │ ├── icons8_supplier_160px_1.png │ ├── icons8_users_96px_1.png │ ├── open_box_32px.png │ ├── print_32px.png │ ├── refresh_32px.png │ ├── save_32px.png │ ├── search_32px.png │ ├── settings_32px.png │ ├── sorting_32px.png │ ├── supplier_32px.png │ └── users_32px.png ├── SMSystem.csproj └── Startup.cs └── SMSystemProject.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/README.md -------------------------------------------------------------------------------- /SMSystem.Core/ConscienceCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/ConscienceCard.cs -------------------------------------------------------------------------------- /SMSystem.Core/Customers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/Customers.cs -------------------------------------------------------------------------------- /SMSystem.Core/Damage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/Damage.cs -------------------------------------------------------------------------------- /SMSystem.Core/Income.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/Income.cs -------------------------------------------------------------------------------- /SMSystem.Core/Materails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/Materails.cs -------------------------------------------------------------------------------- /SMSystem.Core/OutCome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/OutCome.cs -------------------------------------------------------------------------------- /SMSystem.Core/OutComeMaterail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/OutComeMaterail.cs -------------------------------------------------------------------------------- /SMSystem.Core/OutOfConscinesMaterials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/OutOfConscinesMaterials.cs -------------------------------------------------------------------------------- /SMSystem.Core/SMSystem.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/SMSystem.Core.csproj -------------------------------------------------------------------------------- /SMSystem.Core/Stores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/Stores.cs -------------------------------------------------------------------------------- /SMSystem.Core/Suppliers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/Suppliers.cs -------------------------------------------------------------------------------- /SMSystem.Core/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Core/User.cs -------------------------------------------------------------------------------- /SMSystem.Data/ConfigDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/ConfigDictionary.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/ConscienceCardEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/ConscienceCardEntity.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/CustomersEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/CustomersEntity.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/DBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/DBContext.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/DamageEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/DamageEntity.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/DataBaseBackUpAndRestor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/DataBaseBackUpAndRestor.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/IncomeEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/IncomeEntity.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/MaterailsEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/MaterailsEntity.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/OutComeEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/OutComeEntity.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/OutComeMaterialsEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/OutComeMaterialsEntity.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/OutOfConsinceMaterialEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/OutOfConsinceMaterialEntity.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/SppliersEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/SppliersEntity.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/StoreEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/StoreEntity.cs -------------------------------------------------------------------------------- /SMSystem.Data/EFSqlServer/UserEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/EFSqlServer/UserEntity.cs -------------------------------------------------------------------------------- /SMSystem.Data/IDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/IDataHelper.cs -------------------------------------------------------------------------------- /SMSystem.Data/Migrations/20221003112926_AddTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/Migrations/20221003112926_AddTable.Designer.cs -------------------------------------------------------------------------------- /SMSystem.Data/Migrations/20221003112926_AddTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/Migrations/20221003112926_AddTable.cs -------------------------------------------------------------------------------- /SMSystem.Data/Migrations/20221004051618_UpdateMaterials.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/Migrations/20221004051618_UpdateMaterials.Designer.cs -------------------------------------------------------------------------------- /SMSystem.Data/Migrations/20221004051618_UpdateMaterials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/Migrations/20221004051618_UpdateMaterials.cs -------------------------------------------------------------------------------- /SMSystem.Data/Migrations/DBContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/Migrations/DBContextModelSnapshot.cs -------------------------------------------------------------------------------- /SMSystem.Data/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /SMSystem.Data/SMSystem.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Data/SMSystem.Data.csproj -------------------------------------------------------------------------------- /SMSystem.Tests/DataTests/DbContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Tests/DataTests/DbContextTests.cs -------------------------------------------------------------------------------- /SMSystem.Tests/DataTests/StoreEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Tests/DataTests/StoreEntityTests.cs -------------------------------------------------------------------------------- /SMSystem.Tests/SMSystem.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Tests/SMSystem.Tests.csproj -------------------------------------------------------------------------------- /SMSystem.Web/Code/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Code/Config.cs -------------------------------------------------------------------------------- /SMSystem.Web/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/Error.cshtml -------------------------------------------------------------------------------- /SMSystem.Web/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /SMSystem.Web/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/Index.cshtml -------------------------------------------------------------------------------- /SMSystem.Web/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /SMSystem.Web/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /SMSystem.Web/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /SMSystem.Web/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /SMSystem.Web/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /SMSystem.Web/Pages/Store/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/Store/List.cshtml -------------------------------------------------------------------------------- /SMSystem.Web/Pages/Store/List.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/Store/List.cshtml.cs -------------------------------------------------------------------------------- /SMSystem.Web/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /SMSystem.Web/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /SMSystem.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Program.cs -------------------------------------------------------------------------------- /SMSystem.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /SMSystem.Web/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /SMSystem.Web/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /SMSystem.Web/SMSystem.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/SMSystem.Web.csproj -------------------------------------------------------------------------------- /SMSystem.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/Startup.cs -------------------------------------------------------------------------------- /SMSystem.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/appsettings.Development.json -------------------------------------------------------------------------------- /SMSystem.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/appsettings.json -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /SMSystem.Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem.Web/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /SMSystem/2022-09-08_123734.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/2022-09-08_123734.ico -------------------------------------------------------------------------------- /SMSystem/Code/ComponentsObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Code/ComponentsObject.cs -------------------------------------------------------------------------------- /SMSystem/Code/ContainerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Code/ContainerConfig.cs -------------------------------------------------------------------------------- /SMSystem/Code/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Code/DependencyInjection.cs -------------------------------------------------------------------------------- /SMSystem/Code/MainClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Code/MainClass.cs -------------------------------------------------------------------------------- /SMSystem/Code/MessageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Code/MessageCollection.cs -------------------------------------------------------------------------------- /SMSystem/Code/UpdateData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Code/UpdateData.cs -------------------------------------------------------------------------------- /SMSystem/Gui/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/AboutBox.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/AboutBox.cs -------------------------------------------------------------------------------- /SMSystem/Gui/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/AboutBox.resx -------------------------------------------------------------------------------- /SMSystem/Gui/Analyze/AnalyzeUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/Analyze/AnalyzeUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/Analyze/AnalyzeUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/Analyze/AnalyzeUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/Analyze/AnalyzeUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/Analyze/AnalyzeUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/AddCustomerConscienceCard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/AddCustomerConscienceCard.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/AddCustomerConscienceCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/AddCustomerConscienceCard.cs -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/AddCustomerConscienceCard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/AddCustomerConscienceCard.resx -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/CustomerAddForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/CustomerAddForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/CustomerAddForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/CustomerAddForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/CustomerAddForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/CustomerAddForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/CustomerConscienceCardUserForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/CustomerConscienceCardUserForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/CustomerConscienceCardUserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/CustomerConscienceCardUserForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/CustomerConscienceCardUserForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/CustomerConscienceCardUserForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/CustomerUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/CustomerUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/CustomerUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/CustomerUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/CustomersGui/CustomerUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/CustomersGui/CustomerUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Gui/DamageGui/DamageAddForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/DamageGui/DamageAddForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/DamageGui/DamageAddForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/DamageGui/DamageAddForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/DamageGui/DamageAddForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/DamageGui/DamageAddForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/DamageGui/DamageUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/DamageGui/DamageUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/DamageGui/DamageUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/DamageGui/DamageUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/DamageGui/DamageUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/DamageGui/DamageUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Gui/HomeGui/HomeUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/HomeGui/HomeUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/HomeGui/HomeUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/HomeGui/HomeUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/HomeGui/HomeUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/HomeGui/HomeUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Gui/IncomeGui/DamgeActionBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/IncomeGui/DamgeActionBox.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/IncomeGui/DamgeActionBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/IncomeGui/DamgeActionBox.cs -------------------------------------------------------------------------------- /SMSystem/Gui/IncomeGui/DamgeActionBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/IncomeGui/DamgeActionBox.resx -------------------------------------------------------------------------------- /SMSystem/Gui/IncomeGui/IncomeAddForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/IncomeGui/IncomeAddForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/IncomeGui/IncomeAddForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/IncomeGui/IncomeAddForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/IncomeGui/IncomeAddForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/IncomeGui/IncomeAddForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/IncomeGui/IncomeUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/IncomeGui/IncomeUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/IncomeGui/IncomeUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/IncomeGui/IncomeUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/IncomeGui/IncomeUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/IncomeGui/IncomeUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Gui/MaterailsGui/MaterailsAddForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/MaterailsGui/MaterailsAddForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/MaterailsGui/MaterailsAddForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/MaterailsGui/MaterailsAddForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/MaterailsGui/MaterailsAddForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/MaterailsGui/MaterailsAddForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/MaterailsGui/MaterailsUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/MaterailsGui/MaterailsUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/MaterailsGui/MaterailsUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/MaterailsGui/MaterailsUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/MaterailsGui/MaterailsUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/MaterailsGui/MaterailsUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/LoadingUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/LoadingUser.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/LoadingUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/LoadingUser.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/LoadingUser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/LoadingUser.resx -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/NotificaitonPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/NotificaitonPanel.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/NotificaitonPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/NotificaitonPanel.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/NotificaitonPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/NotificaitonPanel.resx -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/NotifictionUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/NotifictionUser.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/NotifictionUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/NotifictionUser.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/NotifictionUser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/NotifictionUser.resx -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/PrintDialogForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/PrintDialogForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/PrintDialogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/PrintDialogForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OtherGui/PrintDialogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OtherGui/PrintDialogForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/OutComeGui/OutComeAddForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutComeGui/OutComeAddForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OutComeGui/OutComeAddForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutComeGui/OutComeAddForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OutComeGui/OutComeAddForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutComeGui/OutComeAddForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/OutComeGui/OutComeUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutComeGui/OutComeUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OutComeGui/OutComeUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutComeGui/OutComeUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OutComeGui/OutComeUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutComeGui/OutComeUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Gui/OutOfConscince/OutOfConscenseAddForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutOfConscince/OutOfConscenseAddForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OutOfConscince/OutOfConscenseAddForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutOfConscince/OutOfConscenseAddForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OutOfConscince/OutOfConscenseAddForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutOfConscince/OutOfConscenseAddForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/OutOfConscince/OutOfConscenseUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutOfConscince/OutOfConscenseUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OutOfConscince/OutOfConscenseUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutOfConscince/OutOfConscenseUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/OutOfConscince/OutOfConscenseUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/OutOfConscince/OutOfConscenseUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Gui/Reports/ReceiptUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/Reports/ReceiptUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/Reports/ReceiptUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/Reports/ReceiptUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/Reports/ReceiptUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/Reports/ReceiptUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Gui/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/SettingsForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/SettingsForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/StartForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/StartForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/StartForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/StartForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/StartForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/StartForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/StoresGui/StoreAddForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/StoresGui/StoreAddForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/StoresGui/StoreAddForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/StoresGui/StoreAddForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/StoresGui/StoreAddForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/StoresGui/StoreAddForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/StoresGui/StoreUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/StoresGui/StoreUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/StoresGui/StoreUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/StoresGui/StoreUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/StoresGui/StoreUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/StoresGui/StoreUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Gui/SuppliersGui/SupplierAddForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/SuppliersGui/SupplierAddForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/SuppliersGui/SupplierAddForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/SuppliersGui/SupplierAddForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/SuppliersGui/SupplierAddForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/SuppliersGui/SupplierAddForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/SuppliersGui/SupplierUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/SuppliersGui/SupplierUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/SuppliersGui/SupplierUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/SuppliersGui/SupplierUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/SuppliersGui/SupplierUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/SuppliersGui/SupplierUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Gui/UserGui/UserAddForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/UserGui/UserAddForm.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/UserGui/UserAddForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/UserGui/UserAddForm.cs -------------------------------------------------------------------------------- /SMSystem/Gui/UserGui/UserAddForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/UserGui/UserAddForm.resx -------------------------------------------------------------------------------- /SMSystem/Gui/UserGui/UserLogin.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/UserGui/UserLogin.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/UserGui/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/UserGui/UserLogin.cs -------------------------------------------------------------------------------- /SMSystem/Gui/UserGui/UserLogin.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/UserGui/UserLogin.resx -------------------------------------------------------------------------------- /SMSystem/Gui/UserGui/UserUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/UserGui/UserUserControl.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Gui/UserGui/UserUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/UserGui/UserUserControl.cs -------------------------------------------------------------------------------- /SMSystem/Gui/UserGui/UserUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Gui/UserGui/UserUserControl.resx -------------------------------------------------------------------------------- /SMSystem/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Main.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Main.cs -------------------------------------------------------------------------------- /SMSystem/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Main.resx -------------------------------------------------------------------------------- /SMSystem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Program.cs -------------------------------------------------------------------------------- /SMSystem/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Properties/Resources.resx -------------------------------------------------------------------------------- /SMSystem/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SMSystem/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Properties/Settings.settings -------------------------------------------------------------------------------- /SMSystem/Resources/2022-09-08_123734.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/2022-09-08_123734.ico -------------------------------------------------------------------------------- /SMSystem/Resources/2022-09-08_123734.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/2022-09-08_123734.jpg -------------------------------------------------------------------------------- /SMSystem/Resources/Delete_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/Delete_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/Loading_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/Loading_icon.gif -------------------------------------------------------------------------------- /SMSystem/Resources/Notification_128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/Notification_128px.png -------------------------------------------------------------------------------- /SMSystem/Resources/about_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/about_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/add_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/add_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/chart_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/chart_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/combo_chart_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/combo_chart_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/department_store_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/department_store_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/edit_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/edit_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/help_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/help_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/home_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/home_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_Close_80px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_Close_80px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_Notification_128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_Notification_128px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_Walmart_200px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_Walmart_200px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_box_96px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_box_96px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_csv_80px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_csv_80px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_customer_80px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_customer_80px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_damaged_parcel_32px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_damaged_parcel_32px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_damaged_parcel_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_damaged_parcel_96px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_data_backup_80px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_data_backup_80px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_database_restore_80px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_database_restore_80px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_export_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_export_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_external_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_external_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_external_80px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_external_80px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_image_200px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_image_200px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_internal_32px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_internal_32px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_internal_96px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_internal_96px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_memo_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_memo_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_moleskine_32px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_moleskine_32px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_near_me_160px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_near_me_160px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_ok_200px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_ok_200px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_printer_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_printer_96px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_scan_stock_128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_scan_stock_128px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_select_users_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_select_users_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_select_users_32px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_select_users_32px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_supplier_160px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_supplier_160px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/icons8_users_96px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/icons8_users_96px_1.png -------------------------------------------------------------------------------- /SMSystem/Resources/open_box_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/open_box_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/print_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/print_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/refresh_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/refresh_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/save_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/save_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/search_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/search_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/settings_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/settings_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/sorting_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/sorting_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/supplier_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/supplier_32px.png -------------------------------------------------------------------------------- /SMSystem/Resources/users_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Resources/users_32px.png -------------------------------------------------------------------------------- /SMSystem/SMSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/SMSystem.csproj -------------------------------------------------------------------------------- /SMSystem/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystem/Startup.cs -------------------------------------------------------------------------------- /SMSystemProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engsafaaj/SMSystemProject/HEAD/SMSystemProject.sln --------------------------------------------------------------------------------