20 lines
538 B
C#
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);
|
|
}
|
|
}
|