Exemplo n.º 1
0
 public bool AddSurveying(List <T_OA_REQUIRERESULT> resultList, string masterID, string requireID)
 {
     if (resultList != null && resultList.Count() > 0)
     {
         using (EmployeeSurveyingBll addBll = new EmployeeSurveyingBll())
         {
             return(addBll.AddSurveying(resultList, masterID, requireID));
         }
     }
     return(false);
 }
Exemplo n.º 2
0
 public bool AddSurveying(List<T_OA_REQUIRERESULT> resultList,string masterID,string requireID)
 {
     if (resultList != null && resultList.Count() > 0)
     {
         using (EmployeeSurveyingBll addBll = new EmployeeSurveyingBll())
         {
             return addBll.AddSurveying(resultList,masterID,requireID);
         }
     }
     return false;
 }
Exemplo n.º 3
0
 public V_EmployeeSurveying GetDataBySurveying(string requireID)
 {
     if (!string.IsNullOrEmpty(requireID))
     {
         using (EmployeeSurveyingBll getBll = new EmployeeSurveyingBll())
         {
             return(getBll.GetDataBySurveying(requireID));
         }
     }
     return(null);
 }
Exemplo n.º 4
0
 public V_EmployeeSurveying GetDataBySurveying(string requireID)
 {
     if (!string.IsNullOrEmpty(requireID))
     {
         using (EmployeeSurveyingBll getBll = new EmployeeSurveyingBll())
         {
             return getBll.GetDataBySurveying(requireID);
         }
     }
     return null;
 }