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