public List <SysUsers> All()
 {
     return(_dbServiceReposity.All <SysUsers>().Where(d => d.IsDel == 0).ToList());
 }
 public List <SysTest> GetTestList()
 {
     return(_dbServiceReposity.All <SysTest>().ToList());
 }