public List <BOTechnology> GetAllTechnologies()
 {
     try
     {
         List <TechnologyMaster> technologies         = dataLayer.GetAllTechnologies();
         List <BOTechnology>     businessTechnologies = BusinessLayerHelper.ConvertTechnologyListToBOTechnologyList(technologies);
         return(businessTechnologies);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public List <BOTechnology> GetAllTechnologiesForEmployee(int employeeID)
 {
     try
     {
         List <TechnologyMaster> technologies            = dataLayer.GetAllTechnologiesForEmployee(employeeID);
         List <BOTechnology>     businessTaskForProjects = BusinessLayerHelper.ConvertTechnologyListToBOTechnologyList(technologies);
         return(businessTaskForProjects);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }