Files
Backend-Api/CompanyManagment.App.Contracts/WorkshopPlan/IWorkshopPlanApplication.cs
2024-07-05 21:36:15 +03:30

17 lines
412 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using _0_Framework.Application;
namespace CompanyManagment.App.Contracts.WorkshopPlan
{
public interface IWorkshopPlanApplication
{
EditWorkshopPlan GetWorkshopPlanByWorkshopId(long workshopId);
OperationResult CreateWorkshopPlan(CreateWorkshopPlan command);
}
}