Пример #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.技能组));
        }
Пример #2
0
 private static string GetYu(BaseDataInfo x)
 {
     return("");
 }
Пример #3
0
 private static string GetJSI(BaseDataInfo x)
 {
     return(x.净满意度);
 }
Пример #4
0
 private static string GetPassRate(BaseDataInfo x)
 {
     return(x.通过率);
 }
Пример #5
0
 private static string GetEvalRate(BaseDataInfo x)
 {
     return(x.客户评价率);
 }
Пример #6
0
 private static bool FilterGroup(BaseDataInfo x)
 {
     throw new NotImplementedException();
 }