Files
Backend-Api/Company.Domain/EmployeeComputeOptionsAgg/IEmployeeComputeOptionsRepository.cs
2024-07-05 21:36:15 +03:30

19 lines
553 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using _0_Framework.Domain;
using CompanyManagment.App.Contracts.EmployeeComputeOptions;
namespace Company.Domain.EmployeeComputeOptionsAgg
{
public interface IEmployeeComputeOptionsRepository : IRepository<long, EmployeeComputeOptions>
{
EmployeeComputeOptionsViewModel GetEmployeeOptions(long workshopId, long employeeId);
List<EmployeeComputeOptionsViewModel> GetAllByWorkshopId(long workshopId);
}
}