An abp application module group that provides basic e-shop service.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
gdlcf88 32870ce43d Implement `TryRefundOrderAsync` in BulkAssetOccupancyResultEventHandler 4 years ago
..
host/EasyAbp.EShop.Plugins.Booking.Host.Shared Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago
src Implement `TryRefundOrderAsync` in BulkAssetOccupancyResultEventHandler 4 years ago
test Refactor StoreAssetCategoryDto to GrantedStoreDto 4 years ago
.gitattributes Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago
.gitignore Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago
.prettierrc Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago
EasyAbp.EShop.Plugins.Booking.abpmdl.json Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago
EasyAbp.EShop.Plugins.Booking.abpsln.json Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago
EasyAbp.EShop.Plugins.Booking.sln Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago
EasyAbp.EShop.Plugins.Booking.sln.DotSettings Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago
NuGet.Config Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago
README.md Exclude booking README.md 4 years ago
docker-compose.migrations.yml Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago
docker-compose.override.yml Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago
docker-compose.yml Create `EasyAbp.EShop.Plugins.Booking` module 4 years ago

README.md

EShop.Plugins.Booking

ABP version NuGet NuGet Download Discord online GitHub stars

A booking-business plugin for EShop. It extends EShop to use the EasyAbp.BookingService module to help end-users to book some assets online.

Installation

  1. Install the following NuGet packages. (see how)

    • EasyAbp.EShop.Orders.Booking.Application (install at EasyAbp.EShop.Orders.Application location)
    • (Optional) EasyAbp.EShop.Payments.Booking.Application (install at EasyAbp.EShop.Payments.Application location)
    • EasyAbp.EShop.Plugins.Booking.Application
    • EasyAbp.EShop.Plugins.Booking.Application
    • EasyAbp.EShop.Plugins.Booking.Application.Contracts
    • EasyAbp.EShop.Plugins.Booking.Domain
    • EasyAbp.EShop.Plugins.Booking.Domain.Shared
    • EasyAbp.EShop.Plugins.Booking.EntityFrameworkCore
    • EasyAbp.EShop.Plugins.Booking.HttpApi
    • EasyAbp.EShop.Plugins.Booking.HttpApi.Client
    • (Optional) EasyAbp.EShop.Plugins.Booking.MongoDB
    • (Optional) EasyAbp.EShop.Plugins.Booking.Web

    Skip installing the EasyAbp.EShop.Payments.Plugins.Booking module if you don't want to check assets are bookable during payment.

  2. Add DependsOn(typeof(EShopXxxModule)) attribute to configure the module dependencies. (see how)

  3. Add builder.ConfigureEShopPluginsBooking(); to the OnModelCreating() method in MyProjectMigrationsDbContext.cs.

  4. Add EF Core migrations and update your database. See: ABP document.

Usage