mirror of https://github.com/EasyAbp/EShop.git
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.
36 lines
1.1 KiB
36 lines
1.1 KiB
using System;
|
|
|
|
namespace EasyAbp.EShop.Plugins.Booking;
|
|
|
|
public static class BookingTestConsts
|
|
{
|
|
public static string BookingProductGroupName { get; } = "CameraBooking";
|
|
|
|
public static Guid Store1Id { get; } = Guid.NewGuid();
|
|
|
|
public static Guid Order1Id { get; } = Guid.NewGuid();
|
|
|
|
public static Guid OrderLine1Id { get; } = Guid.NewGuid();
|
|
|
|
public static Guid OrderLine2Id { get; } = Guid.NewGuid();
|
|
|
|
public static Guid BookingProduct1Id { get; } = Guid.NewGuid();
|
|
|
|
public static Guid BookingProduct1Sku1Id { get; } = Guid.NewGuid();
|
|
|
|
public static Guid Asset1Id { get; } = Guid.NewGuid();
|
|
|
|
public static Guid AssetCategory1Id { get; } = Guid.NewGuid();
|
|
|
|
public static Guid PeriodScheme1Id { get; } = Guid.NewGuid();
|
|
|
|
public static Guid Period1Id { get; } = Guid.NewGuid();
|
|
|
|
public static DateTime BookingDate { get; } = DateTime.Today.AddDays(1);
|
|
|
|
public static TimeSpan Period1StartingTime { get; } = TimeSpan.FromHours(8); // from 8:00
|
|
|
|
public static TimeSpan Period1Duration { get; } = TimeSpan.FromHours(2); // to 10:00 (8:00 + 2h)
|
|
|
|
public static int Volume { get; } = 1;
|
|
}
|