예제 #1
0
 private bool IsModified(CXLFEE record)
 {
     //Type-specific routine that takes into account relationships that should also be considered
     //when deciding if there are unsaved changes.  The entity properties also return true if the
     //record is new or deleted.
     return(record.IsModified(_context));
 }
예제 #2
0
 internal static void SetCxlfeeChgDate(FlextourEntities context, CXLFEE cxlFee, DateTime updated, string user)
 {
     if (cxlFee.IsModified(context))
     {
         cxlFee.LAST_UPD = updated;
         cxlFee.UPD_INIT = user;
     }
 }