using TheCyclopsContracts.BusinessLogicContracts; using TheCyclopsContracts.DataModels; namespace TheCyclopsBusinessLogic.Implementations; internal class EmployeeBusinessLogicContract : IEmployeeBusinessLogicContract { public List GetAllEmployees(bool onlyActive = true) { return []; } public List GetAllEmployeesByPost(string postId, bool onlyActive = true) { return []; } public List GetAllEmployeesByBirthDate(DateTime fromDate, DateTime toDate, bool onlyActive = true) { return []; } public List GetAllEmployeesByEmploymentDate(DateTime fromDate, DateTime toDate, bool onlyActive = true) { return []; } public EmployeeDataModel GetEmployeeByData(string data) { return new EmployeeDataModel("", "", "", "", DateTime.Now, DateTime.Now, false); } public void InsertEmployee(EmployeeDataModel employeeDataModel) { } public void UpdateEmployee(EmployeeDataModel employeeDataModel) { } public void DeleteEmployee(string id) { } }