2023-09-18 15:41:41 +03:30
|
|
|
|
namespace Brizco.Domain.CommandQueries.Commands;
|
|
|
|
|
|
|
2023-11-05 18:00:05 +03:30
|
|
|
|
public record CreateShiftPlanCommand(DateTime PlanDate,Guid ShiftId,List<Guid> UserIds)
|
2023-09-18 15:41:41 +03:30
|
|
|
|
:IRequest<ShiftPlanLDto>;
|
|
|
|
|
|
|
2023-11-05 18:00:05 +03:30
|
|
|
|
public record UpdateShiftPlanCommand(Guid Id,DateTime PlanDate, Guid ShiftId, List<Guid> UserIds)
|
2023-09-18 15:41:41 +03:30
|
|
|
|
: IRequest<bool>;
|
|
|
|
|
|
|
2023-11-05 18:00:05 +03:30
|
|
|
|
public record DeleteShiftPlanCommand(Guid Id)
|
2023-09-18 15:41:41 +03:30
|
|
|
|
: IRequest<bool>;
|