示例#1
0
 public ActionResult AddNewGenericName(GenericNameDto dto)
 {
     return this.Direct(new
     {
         success = !String.IsNullOrWhiteSpace(dto.Name),
         data = dto
     });
 }
 public ActionResult AddNewGenericName(GenericNameDto dto)
 {
     return(this.Direct(new
     {
         success = !String.IsNullOrWhiteSpace(dto.Name),
         data = dto
     }));
 }