12 lines
500 B
C#
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);
|
|
} |