Exemplo n.º 1
0
 public ActionResult Update(Bam.Net.CoreServices.ApplicationRegistration.Data.Dao.Client dao)
 {
     try
     {
         dao.Save();
         return(Json(new { Success = true, Message = "", Dao = dao.ToJsonSafe() }));
     }
     catch (Exception ex)
     {
         return(GetErrorResult(ex));
     }
 }
Exemplo n.º 2
0
 public ActionResult Delete(long id)
 {
     try
     {
         string msg = "";
         Bam.Net.CoreServices.ApplicationRegistration.Data.Dao.Client dao = Bam.Net.CoreServices.ApplicationRegistration.Data.Dao.Client.OneWhere(c => c.KeyColumn == id);
         if (dao != null)
         {
             dao.Delete();
         }
         else
         {
             msg = string.Format("The specified id ({0}) was not found in the table (Client)", id);
         }
         return(Json(new { Success = true, Message = msg, Dao = "" }));
     }
     catch (Exception ex)
     {
         return(GetErrorResult(ex));
     }
 }
Exemplo n.º 3
0
 public ActionResult Create(Bam.Net.CoreServices.ApplicationRegistration.Data.Dao.Client dao)
 {
     return(Update(dao));
 }