15 lines
369 B
C#
15 lines
369 B
C#
|
|
using QRRapidoApp.Models;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace QRRapidoApp.Services
|
|
{
|
|
public interface IPlanService
|
|
{
|
|
Task<List<Plan>> GetActivePlansAsync();
|
|
Task<List<Plan>> GetPlansByLanguageAsync(string languageCode, string countryCode = "BRL");
|
|
Task<Plan?> GetPlanByIdAsync(string id);
|
|
}
|
|
}
|