add payment methods

This commit is contained in:
Sai Naw Wun
2020-09-18 04:04:21 +06:30
parent 33f0c4fd98
commit 00f647e915
47 changed files with 1344 additions and 1043 deletions

View 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);
}