Esempio n. 1
0
        private static bool FilterGroup(BaseDataInfo x, string groups)
        {
            if (x == null || string.IsNullOrWhiteSpace(groups) || string.IsNullOrEmpty(x.工号))
            {
                return(false);
            }

            return(groups.Split(',').ToList().Contains(x.技能组));
        }
Esempio n. 2
0
 private static string GetYu(BaseDataInfo x)
 {
     return("");
 }
Esempio n. 3
0
 private static string GetJSI(BaseDataInfo x)
 {
     return(x.净满意度);
 }
Esempio n. 4
0
 private static string GetPassRate(BaseDataInfo x)
 {
     return(x.通过率);
 }
Esempio n. 5
0
 private static string GetEvalRate(BaseDataInfo x)
 {
     return(x.客户评价率);
 }
Esempio n. 6
0
 private static bool FilterGroup(BaseDataInfo x)
 {
     throw new NotImplementedException();
 }