Example #1
0
 public int Delete(CUUser entity)
 {
     throw new NotImplementedException();
 }
Example #2
0
        public ActionResult Create(CUUser user)
        {
            var pkid = _CUUserService.Add(user);

            return(Json(new { pkid = pkid }, JsonRequestBehavior.DenyGet));
        }
Example #3
0
 public object Insert(CUUser entity)
 {
     return(Db.Insert(entity));
 }
Example #4
0
 public object Add(CUUser entity)
 {
     return(_CUUserRepository.Insert(entity));
 }