Example #1
0
 public object AddCert(Cert cert)
 {
     if (cert == null || string.IsNullOrEmpty(cert.userid))
     {
         return(new ReturnResult <Cert>(-4, "传入参数错误!"));
     }
     return(_UsersService.AddCert(cert));
 }