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

20 lines
538 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.EmployeeComputeOptions
{
public interface IEmployeeComputeOptionsApplication
{
OperationResult Create(CreateEmployeeComputeOptions command);
EmployeeComputeOptionsViewModel GetEmployeeOptions(long workshopId, long employeeId);
List<EmployeeComputeOptionsViewModel> GetAllByWorkshopId(long workshopId);
}
}