19 lines
560 B
C#
19 lines
560 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WhiteLagoon.Web.ViewModels;
|
|
|
|
namespace WhiteLagoon.Application.Services.Interface
|
|
{
|
|
public interface IDashboardService
|
|
{
|
|
Task<RadialBarChartDto> GetTotalBookingRadialChartData();
|
|
Task<RadialBarChartDto> GetRegisteredUserChartData();
|
|
Task<RadialBarChartDto> GetRevenueChartData();
|
|
Task<PieChartDto> GetBookingPieChartData();
|
|
Task<LineChartDto> GetMemberAndBookingLineChartData();
|
|
}
|
|
}
|