feat: Implement reorder functionality in ClientCreateOrderRepository and update related interfaces and use cases

This commit is contained in:
Achintha Isuru
2026-02-19 16:14:43 -05:00
parent b85ea5fb7f
commit 889bf90e71
10 changed files with 37 additions and 514 deletions

View File

@@ -1,16 +0,0 @@
abstract class StaffMainRoutes {
static const String modulePath = '/worker-main';
static const String shifts = '/shifts';
static const String payments = '/payments';
static const String home = '/home';
static const String clockIn = '/clock-in';
static const String profile = '/profile';
// Full paths
static const String shiftsFull = '$modulePath$shifts';
static const String paymentsFull = '$modulePath$payments';
static const String homeFull = '$modulePath$home';
static const String clockInFull = '$modulePath$clockIn';
static const String profileFull = '$modulePath$profile';
}