Exemplo n.º 1
0
        private int DeleteTblStyleStatus(TblStyleStatu row)
        {
            using (var context = new WorkFlowManagerDBEntities())
            {
                var oldRow = (from e in context.TblStyleStatus
                              where e.Iserial == row.Iserial
                              select e).SingleOrDefault();
                if (oldRow != null)
                {
                    context.DeleteObject(oldRow);
                }

                context.SaveChanges();
            }
            return(row.Iserial);
        }
Exemplo n.º 2
0
        public void SaveMainRow()
        {
            if (SelectedMainRow != null)
            {
                var valiationCollection = new List <ValidationResult>();

                var isvalid = Validator.TryValidateObject(SelectedMainRow, new ValidationContext(SelectedMainRow, null, null), valiationCollection, true);

                if (isvalid)
                {
                    var save    = SelectedMainRow.Iserial == 0;
                    var saveRow = new TblStyleStatu();
                    saveRow.InjectFrom(SelectedMainRow);
                    Client.UpdateOrInsertTblStyleStatusAsync(saveRow, save, MainRowList.IndexOf(SelectedMainRow));
                }
            }
        }
Exemplo n.º 3
0
 private TblStyleStatu UpdateOrInsertTblStyleStatus(TblStyleStatu newRow, bool save, int index, out int outindex)
 {
     outindex = index;
     using (var context = new WorkFlowManagerDBEntities())
     {
         if (save)
         {
             context.TblStyleStatus.AddObject(newRow);
         }
         else
         {
             var oldRow = (from e in context.TblStyleStatus
                           where e.Iserial == newRow.Iserial
                           select e).SingleOrDefault();
             if (oldRow != null)
             {
                 GenericUpdate(oldRow, newRow, context);
             }
         }
         context.SaveChanges();
         return(newRow);
     }
 }