18 lines
419 B
C#
18 lines
419 B
C#
namespace LaaProduction.Personalization.Repositories.Interfaces
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
internal interface IFunctionsRepository
|
|
{
|
|
IEnumerable<string> All();
|
|
|
|
IEnumerable<string> All(short appId);
|
|
|
|
void Delete(short employeeId);
|
|
|
|
IEnumerable<string> EmployeeAll(short employeeId);
|
|
|
|
void Insert(short employeeId, IEnumerable<string> functions);
|
|
}
|
|
}
|