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

12 lines
407 B
C#

using System.Collections.Generic;
using _0_Framework.Domain;
using CompanyManagment.App.Contracts.FileEmployer;
namespace Company.Domain.FileEmployerAgg;
public interface IFileEmployerRepository : IRepository<long, FileEmployer>
{
List<FileEmployerViewModel> GetFileEmployee();
EditFileEmployer GetDetails(long id);
List<FileEmployerViewModel> Search(FileEmployerSearchModel searchModel);
}