Files
Backend-Api/Company.Domain/RollCallAgg/IRollCallRepository.cs
2024-08-17 18:26:33 +03:30

22 lines
631 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.RollCall;
using CompanyManagment.App.Contracts.WorkingHoursTemp;
namespace Company.Domain.RollCallAgg
{
public interface IRollCallRepository : IRepository<long, RollCall>
{
EditRollCall GetByEmployeeIdAndWorkshopId(long employeeId, long workshopId);
EditRollCall GetById(long id);
List<RollCallViewModel> Search(RollCallSearchModel searchModel);
long Flag(long employeeId, long workshopId);
}
}