Skip to content

Commit

Permalink
Update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 25, 2023
1 parent eef1531 commit d325427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Velocity
Submodule Velocity updated 90 files
+6 −0 Velocity.sln
+10 −0 src/Velocity.Avalonia/App.axaml
+54 −0 src/Velocity.Avalonia/App.axaml.cs
+ src/Velocity.Avalonia/Assets/Background.jpg
+18 −0 src/Velocity.Avalonia/Extensions/ApplicationLifetimeExtensions.cs
+74 −0 src/Velocity.Avalonia/Extensions/DependencyInjection.cs
+29 −0 src/Velocity.Avalonia/Extensions/ResultExtensions.cs
+49 −0 src/Velocity.Avalonia/Helpers/MessageBoxService.cs
+6 −0 src/Velocity.Avalonia/Interfaces/IViewModelInitialize.cs
+24 −0 src/Velocity.Avalonia/Program.cs
+24 −0 src/Velocity.Avalonia/Selectors/TabControlSelector.cs
+26 −0 src/Velocity.Avalonia/Services/AuthorizationHeaderHandler.cs
+39 −0 src/Velocity.Avalonia/Services/LocalStorageService.cs
+37 −0 src/Velocity.Avalonia/Services/NavigationService.cs
+16 −0 src/Velocity.Avalonia/Styles/AppStyles.axaml
+33 −0 src/Velocity.Avalonia/Velocity.Avalonia.csproj
+48 −0 src/Velocity.Avalonia/ViewModels/Customers/AddCustomerViewModel.cs
+41 −0 src/Velocity.Avalonia/ViewModels/Customers/CustomerViewModel.cs
+108 −0 src/Velocity.Avalonia/ViewModels/Customers/CustomersTableViewModel.cs
+90 −0 src/Velocity.Avalonia/ViewModels/Customers/EditCustomerViewModel.cs
+66 −0 src/Velocity.Avalonia/ViewModels/LoginViewModel.cs
+21 −0 src/Velocity.Avalonia/ViewModels/MainViewModel.cs
+61 −0 src/Velocity.Avalonia/ViewModels/Products/AddProductViewModel.cs
+85 −0 src/Velocity.Avalonia/ViewModels/Products/EditProductViewModel.cs
+108 −0 src/Velocity.Avalonia/ViewModels/Products/ProductsTableViewModel.cs
+42 −0 src/Velocity.Avalonia/ViewModels/Products/ProductsViewModel.cs
+48 −0 src/Velocity.Avalonia/ViewModels/Suppliers/AddSupplierViewModel.cs
+87 −0 src/Velocity.Avalonia/ViewModels/Suppliers/EditSupplierViewModel.cs
+41 −0 src/Velocity.Avalonia/ViewModels/Suppliers/SupplierViewModel.cs
+108 −0 src/Velocity.Avalonia/ViewModels/Suppliers/SuppliersTableViewModel.cs
+7 −0 src/Velocity.Avalonia/ViewModels/ViewModelBase.cs
+78 −0 src/Velocity.Avalonia/Views/CustomerViews/AddCustomerView.axaml
+11 −0 src/Velocity.Avalonia/Views/CustomerViews/AddCustomerView.axaml.cs
+55 −0 src/Velocity.Avalonia/Views/CustomerViews/CustomersTableView.axaml
+19 −0 src/Velocity.Avalonia/Views/CustomerViews/CustomersTableView.axaml.cs
+23 −0 src/Velocity.Avalonia/Views/CustomerViews/CustomersView.axaml
+12 −0 src/Velocity.Avalonia/Views/CustomerViews/CustomersView.axaml.cs
+78 −0 src/Velocity.Avalonia/Views/CustomerViews/EditCustomerView.axaml
+13 −0 src/Velocity.Avalonia/Views/CustomerViews/EditCustomerView.axaml.cs
+28 −0 src/Velocity.Avalonia/Views/LoginWindow.axaml
+13 −0 src/Velocity.Avalonia/Views/LoginWindow.axaml.cs
+53 −0 src/Velocity.Avalonia/Views/MainWindow.axaml
+13 −0 src/Velocity.Avalonia/Views/MainWindow.axaml.cs
+60 −0 src/Velocity.Avalonia/Views/ProductViews/AddProductView.axaml
+13 −0 src/Velocity.Avalonia/Views/ProductViews/AddProductView.axaml.cs
+8 −0 src/Velocity.Avalonia/Views/ProductViews/EditProductView.axaml
+13 −0 src/Velocity.Avalonia/Views/ProductViews/EditProductView.axaml.cs
+56 −0 src/Velocity.Avalonia/Views/ProductViews/ProductsTableView.axaml
+19 −0 src/Velocity.Avalonia/Views/ProductViews/ProductsTableView.axaml.cs
+23 −0 src/Velocity.Avalonia/Views/ProductViews/ProductsView.axaml
+13 −0 src/Velocity.Avalonia/Views/ProductViews/ProductsView.axaml.cs
+78 −0 src/Velocity.Avalonia/Views/SupplierViews/AddSupplierView.axaml
+13 −0 src/Velocity.Avalonia/Views/SupplierViews/AddSupplierView.axaml.cs
+78 −0 src/Velocity.Avalonia/Views/SupplierViews/EditSupplierView.axaml
+13 −0 src/Velocity.Avalonia/Views/SupplierViews/EditSupplierView.axaml.cs
+55 −0 src/Velocity.Avalonia/Views/SupplierViews/SuppliersTableView.axaml
+19 −0 src/Velocity.Avalonia/Views/SupplierViews/SuppliersTableView.axaml.cs
+23 −0 src/Velocity.Avalonia/Views/SupplierViews/SuppliersView.axaml
+13 −0 src/Velocity.Avalonia/Views/SupplierViews/SuppliersView.axaml.cs
+13 −0 src/Velocity.Avalonia/Views/ViewBase.cs
+13 −0 src/Velocity.Avalonia/Views/WindowBase.cs
+18 −0 src/Velocity.Avalonia/app.manifest
+147 −0 src/Velocity.Backend/Controllers/CustomerController.cs
+0 −76 src/Velocity.Backend/Controllers/CustomerVendorController.cs
+146 −0 src/Velocity.Backend/Controllers/ProductController.cs
+142 −0 src/Velocity.Backend/Controllers/SupplierController.cs
+63 −1 src/Velocity.Backend/DbContexts/AppDbContext.cs
+18 −18 src/Velocity.Backend/Endpoints/LoginEndpoints.cs
+440 −0 src/Velocity.Backend/Migrations/20231023161409_CreateBaseEntities.Designer.cs
+338 −0 src/Velocity.Backend/Migrations/20231023161409_CreateBaseEntities.cs
+368 −20 src/Velocity.Backend/Migrations/AppDbContextModelSnapshot.cs
+19 −0 src/Velocity.Shared/Entities/Customer.cs
+0 −30 src/Velocity.Shared/Entities/CustomerVendorDetail.cs
+6 −2 src/Velocity.Shared/Entities/Product.cs
+72 −0 src/Velocity.Shared/Entities/PurchaseInvoice.cs
+74 −0 src/Velocity.Shared/Entities/PurchaseOrder.cs
+65 −0 src/Velocity.Shared/Entities/SalesInvoice.cs
+19 −0 src/Velocity.Shared/Entities/Supplier.cs
+0 −15 src/Velocity.Shared/Requests/CustomerVendorDetails/CreateCustomerVendorDetailRequest.cs
+0 −16 src/Velocity.Shared/Requests/CustomerVendorDetails/UpdateCustomerVendorDetailRequest.cs
+14 −0 src/Velocity.Shared/Requests/Customers/CreateCustomerRequest.cs
+15 −0 src/Velocity.Shared/Requests/Customers/UpdateCustomerRequest.cs
+10 −0 src/Velocity.Shared/Requests/Products/CreateProductRequest.cs
+11 −0 src/Velocity.Shared/Requests/Products/UpdateProductRequest.cs
+14 −0 src/Velocity.Shared/Requests/Suppliers/CreateSupplierRequest.cs
+15 −0 src/Velocity.Shared/Requests/Suppliers/UpdateSupplierRequest.cs
+0 −16 src/Velocity.Shared/Responses/CustomerVendorDetails/CustomerVendorResponse.cs
+15 −0 src/Velocity.Shared/Responses/Customers/CustomerResponse.cs
+14 −0 src/Velocity.Shared/Responses/Products/ProductResponse.cs
+15 −0 src/Velocity.Shared/Responses/Suppliers/SupplierResponse.cs

0 comments on commit d325427

Please sign in to comment.