| using System.Collections.Generic; | 
| using System.Threading.Tasks; | 
| using Volo.Abp.Application.Services; | 
|   | 
| namespace LifePayment.Application.Contracts | 
| { | 
|     public interface ICommonService : IApplicationService | 
|     { | 
|   | 
|         Task<string> GetOnlineService(); | 
|   | 
|         Task UpdateOnlineService(OnlineServiceInput input); | 
|          | 
|     } | 
| } |