Example #1
0
        private static ProcessRuntimeDescriptor CreateFromFilter(IQueryFilter filter, Database database = null)
        {
            Database db  = database ?? Db.For <ProcessRuntimeDescriptor>();
            var      dao = new ProcessRuntimeDescriptor();

            filter.Parameters.Each(p =>
            {
                dao.Property(p.ColumnName, p.Value);
            });
            dao.Save(db);
            return(dao);
        }
Example #2
0
 public ActionResult Update(Bam.Net.CoreServices.AssemblyManagement.Data.Dao.ProcessRuntimeDescriptor dao)
 {
     try
     {
         dao.Save();
         return(Json(new { Success = true, Message = "", Dao = dao.ToJsonSafe() }));
     }
     catch (Exception ex)
     {
         return(GetErrorResult(ex));
     }
 }
Example #3
0
 public ActionResult Delete(long id)
 {
     try
     {
         string msg = "";
         Bam.Net.CoreServices.AssemblyManagement.Data.Dao.ProcessRuntimeDescriptor dao = Bam.Net.CoreServices.AssemblyManagement.Data.Dao.ProcessRuntimeDescriptor.OneWhere(c => c.KeyColumn == id);
         if (dao != null)
         {
             dao.Delete();
         }
         else
         {
             msg = string.Format("The specified id ({0}) was not found in the table (ProcessRuntimeDescriptor)", id);
         }
         return(Json(new { Success = true, Message = msg, Dao = "" }));
     }
     catch (Exception ex)
     {
         return(GetErrorResult(ex));
     }
 }
Example #4
0
 public ActionResult Create(Bam.Net.CoreServices.AssemblyManagement.Data.Dao.ProcessRuntimeDescriptor dao)
 {
     return(Update(dao));
 }