Esempio n. 1
0
 private IVersionControlAction A(VersionControlActionType type, int offset)
 {
     return(new VersionControlAction
     {
         ActionType = type,
         ExecutedAt = Time(offset)
     });
 }
Esempio n. 2
0
 private IDEEvent VCE(int offset, VersionControlActionType type)
 {
     return(new VersionControlEvent
     {
         TriggeredAt = Time(offset),
         Actions =
         {
             new VersionControlAction
             {
                 ExecutedAt = Time(offset),
                 ActionType = type
             }
         }
     });
 }