public static BehaviorGraph AddActionsInThisNamespace(this BehaviorGraph graph)
 {
     return(graph.AddActionsInNamespace(MethodBase.GetCurrentMethod().GetCallingType()));
 }
 public static BehaviorGraph AddActionsInNamespace <T>(this BehaviorGraph graph)
 {
     return(graph.AddActionsInNamespace(typeof(T)));
 }