Files
Backend-Api/Company.Domain/RollCallPlanAgg/IRollCallPlanRepository.cs
2024-07-05 21:36:15 +03:30

12 lines
393 B
C#

using System.Collections.Generic;
using _0_Framework.Domain;
using CompanyManagment.App.Contracts.RollCallPlan;
namespace Company.Domain.RollCallPlanAgg;
public interface IRollCallPlanRepository : IRepository<long, RollCallPlan>
{
List<RollCallPlanViewModel> GetAll();
List<RollCallPlanViewModel> GetSelectedPlans();
RollCallPlanViewModel GetByMaxPersonValid(int maxPerson);
}