2023-05-19 17:14:57 +04:00
|
|
|
|
using SchoolAgainStudyContracts.ViewModel;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SchoolAgainStudyContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IChartLogic
|
|
|
|
|
{
|
|
|
|
|
public (int Products, int Diyes) GetDifferenceInCount(int StudentId);
|
|
|
|
|
public List<ActivityChartViewModel> GetActivitys(int StudentId);
|
2023-05-19 23:50:30 +04:00
|
|
|
|
public List<TopersViewModel> GetTopInterests(int StudentId);
|
|
|
|
|
public List<TopersViewModel> GetTopMaterials(int TeacherId);
|
2023-05-19 17:47:04 +04:00
|
|
|
|
public List<TopersViewModel> GetTopStudents(int TeacherId);
|
|
|
|
|
}
|
2023-05-19 17:14:57 +04:00
|
|
|
|
}
|