using System; using System.Collections.Generic; using System.Text; namespace SampleApp.Interface.PaymentInterface { public interface IAppPaymentService { string GooglePay(string amount); string PhonePay(string amount); string IciciPay(string amount); string BhimPay(string amount); string PayTm(string amount); } }