6 lines
187 B
C#
6 lines
187 B
C#
|
|
namespace Brizco.Core.EntityServices.Abstracts;
|
|||
|
|
|
|||
|
|
public interface IShiftPlanService
|
|||
|
|
{
|
|||
|
|
Task ChangeShiftPlanTaskStatusAsync(Guid shiftPlanId,bool isChangeToShift , bool isDisable);
|
|||
|
|
}
|