SurveyVista/Services/Interaces/IDashboardRepository.cs
2024-06-01 18:38:06 +02:00

15 lines
414 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Services.Interaces
{
public interface IDashboardRepository
{
Task<Dictionary<string, int>> GetModelCountsAsync();
Task<Dictionary<string, int>> GetCurrentBannerSelectionsAsync();
Task<Dictionary<string, int>> GetCurrentFooterSelectionsAsync();
}
}