public void SaveOldRow(TblMethodOfPaymentViewModel oldRow)
        {
            if (oldRow != null)
            {
                var valiationCollection = new List <ValidationResult>();

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

                if (isvalid)
                {
                    var save = oldRow.Iserial == 0;
                    if (AllowUpdate != true && !save)
                    {
                        MessageBox.Show(strings.AllowUpdateMsg);
                        return;
                    }
                    var saveRow = new TblMethodOfPayment();
                    saveRow.InjectFrom(oldRow);

                    Glclient.UpdateOrInsertTblMethodOfPaymentsAsync(saveRow, save, MainRowList.IndexOf(oldRow),
                                                                    LoggedUserInfo.DatabasEname);
                }
            }
        }
Example #2
0
 private int DeleteTblMethodOfPayment(TblMethodOfPayment row, int index, string company)
 {
     using (var entity = new ccnewEntities(GetSqlConnectionString(company)))
     {
         var query = (from e in entity.TblMethodOfPayments
                      where e.Iserial == row.Iserial
                      select e).SingleOrDefault();
         if (query != null)
         {
             entity.DeleteObject(query);
         }
         entity.SaveChanges();
     }
     return(row.Iserial);
 }
Example #3
0
 private TblMethodOfPayment UpdateOrInsertTblMethodOfPayments(TblMethodOfPayment newRow, bool save, int index, out int outindex, string company)
 {
     outindex = index;
     using (var entity = new ccnewEntities(GetSqlConnectionString(company)))
     {
         if (save)
         {
             entity.TblMethodOfPayments.AddObject(newRow);
         }
         else
         {
             var oldRow = (from e in entity.TblMethodOfPayments
                           where e.Iserial == newRow.Iserial
                           select e).SingleOrDefault();
             if (oldRow != null)
             {
                 GenericUpdate(oldRow, newRow, entity);
             }
         }
         entity.SaveChanges();
         return(newRow);
     }
 }