Merge branch 'feature-payment-management' into feature-1553-1598
This commit is contained in:
@@ -13,7 +13,8 @@ namespace util
|
||||
enum class PaymentMode
|
||||
{
|
||||
ONLINE,
|
||||
OFFLINE
|
||||
OFFLINE,
|
||||
NOTSET
|
||||
};
|
||||
|
||||
enum class PaymentStatus
|
||||
@@ -74,6 +75,8 @@ namespace util
|
||||
return "ONLINE";
|
||||
case PaymentMode::OFFLINE:
|
||||
return "OFFLINE";
|
||||
case PaymentMode::NOTSET:
|
||||
return "NOTSET";
|
||||
}
|
||||
throw std::invalid_argument("Invalid PaymentMode");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user