package com.abc.service; import com.abc.entities.Dept; import com.abc.exceptions.AppException; public interface DeptService { Dept registerDept(String deptName, String projCode, String projType, String projStartDate) throws AppException; Dept getDept(String deptName, String projCode) throws AppException; void updateProjectDetails(String deptName, String projCode, String projType) throws AppException; void removeProject(String deptName, String projCode) throws AppException; Dept getDeptWithEmployees(String deptName, String projCode) throws AppException; }