add payment methods
This commit is contained in:
8
lib/fcs/common/services/common_service.dart
Normal file
8
lib/fcs/common/services/common_service.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
import 'package:fcs/fcs/common/domain/entities/payment_method.dart';
|
||||
|
||||
abstract class CommonService {
|
||||
// Payment Service
|
||||
Future<void> createPaymentMethod(PaymentMethod paymentMethod);
|
||||
Future<void> updatePaymentMethod(PaymentMethod paymentMethod);
|
||||
Future<void> deletePayment(String id);
|
||||
}
|
||||
Reference in New Issue
Block a user