示例#1
0
 public bool AddEmployeeSurveyMaster(T_OA_REQUIREMASTER addId)
 {
     using (EmployeeSurveysMasterBll masterBll = new EmployeeSurveysMasterBll())
     {
         return(masterBll.Add(addId));
     }
 }
        public bool AddEmployeeSurveyMaster(T_OA_REQUIREMASTER addId)
        {
            using (EmployeeSurveysMasterBll masterBll = new EmployeeSurveysMasterBll())
            {
                return masterBll.Add(addId);

            }
        }
示例#3
0
 public int AddEmpSurveys(T_OA_REQUIREMASTER obj)
 {
     using (EmployeeSurveysMasterBll empSurveysCreateBll = new EmployeeSurveysMasterBll())
     {
         bool sucess = empSurveysCreateBll.Add(obj);
         if (sucess == false)
         {
             return(-1);
         }
         return(1);
     }
 }
示例#4
0
 public bool AddEmployeeSurvey(T_OA_REQUIREMASTER key)
 {
     using (EmployeeSurveysMasterBll masterBll = new EmployeeSurveysMasterBll())
     {
         bool sucess = masterBll.Add(key);
         if (sucess == false)
         {
             return(false);
         }
         return(true);
     }
 }
 public int AddEmpSurveys(T_OA_REQUIREMASTER obj)
 {
     using (EmployeeSurveysMasterBll empSurveysCreateBll = new EmployeeSurveysMasterBll())
     {
         bool sucess = empSurveysCreateBll.Add(obj);
         if (sucess == false)
         {
             return -1;
         }
         return 1;
     }
 }
        public bool AddEmployeeSurvey(T_OA_REQUIREMASTER key)
        {
            using (EmployeeSurveysMasterBll masterBll = new EmployeeSurveysMasterBll())
            {
                bool sucess = masterBll.Add(key);
                if (sucess == false)
                {
                    return false;
                }
                return true;
 
            }
        }