10 lines
296 B
C#
10 lines
296 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.RollCallPlan;
|
|
|
|
public interface IRollCallPlanAppllication
|
|
{
|
|
List<RollCallPlanViewModel> GetAll();
|
|
List<RollCallPlanViewModel> GetSelectedPlans();
|
|
RollCallPlanViewModel GetByMaxPersonValid(int maxPerson);
|
|
} |