using System.Collections.Generic; using System.Threading.Tasks; using _0_Framework.Domain; using CompanyManagment.App.Contracts.AdminMonthlyOverview; namespace Company.Domain.AdminMonthlyOverviewAgg; public interface IAdminMonthlyOverviewRepository:IRepository { Task> GetWorkshopStatus(AdminMonthlyOverviewSearchModel searchModel); Task GetCounter(int year, int month, long accountId); }