Files
Backend-Api/Company.Domain/AdminMonthlyOverviewAgg/IAdminMonthlyOverviewRepository.cs

12 lines
500 B
C#

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<long, AdminMonthlyOverview>
{
Task<List<AdminMonthlyOverviewListViewModel>> GetWorkshopStatus(AdminMonthlyOverviewSearchModel searchModel);
Task<AdminMonthlyOverViewCounterVm> GetCounter(int year, int month, long accountId);
}