private bool tryPost(ref Model.Cararchive model, out string errMsg) { errMsg = ""; bool re = false; model.Creater = this.auth.UserId; model.CreatedDate = DateTime.Now; if (CarManager.ArchiveCar(ref model, out errMsg)) { re = true; } return(re); }