Skip to content

Commit

Permalink
Order Status informations added to Static Details
Browse files Browse the repository at this point in the history
  • Loading branch information
aliarmaganuygun committed Oct 19, 2024
1 parent 4112c47 commit 053a47c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Bulky.Utility/SD.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,17 @@ public static class SD
public const string Role_Company = "Company";
public const string Role_Admin = "Admin";
public const string Role_Employee = "Employee";

public const string StatusPending = "Pending";
public const string StatusApproved = "Approved";
public const string StatusInProcess = "Processing";
public const string StatusShipped = "Shipped";
public const string StatusCancelled = "Cancelled";
public const string StatusRefunded = "Refunded";

public const string PaymentStatusPending = "Pending";
public const string PaymentStatusApproved = "Approved";
public const string PaymentStatusDelayedPayment = "ApprovedForDelayedPayment";
public const string PaymentStatusRejected = "Rejected";
}
}

0 comments on commit 053a47c

Please sign in to comment.