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 GetAllByWorkshopId(long workshopId); } }