17 lines
412 B
C#
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);
|
|
}
|
|
}
|