6 lines
202 B
C#
6 lines
202 B
C#
|
|
namespace Brizco.Core.EntityServices.Abstracts;
|
|||
|
|
|
|||
|
|
public interface IActivityService : IScopedDependency
|
|||
|
|
{
|
|||
|
|
Task CreateActivitiesByShiftPlan(Guid shiftPlanId, CancellationToken cancellationToken);
|
|||
|
|
}
|