public static IGestureFactory GetInstance()
 {
     if (instance == null)
     {
         instance = new MotionGestureFactory();
     }
     return(instance);
 }
 public AutomatedGestureContainer(IGestureFactory factory)
 {
     this._factory = factory;
 }