public void AddEmployeeToProject(string email, int emId, int projectId) { try { _projectRepository.AddEmployeeToProject(email, emId, projectId); } catch (Exception e) { throw new Exception(e.Message); } }