using clauses cleanup

This commit is contained in:
Paul Schneider 2026-08-22 03:34:48 +01:00
commit b679707b83
292 changed files with 91 additions and 685 deletions

View file

@ -1,5 +1,3 @@
using System;
namespace Yavsc
{
public interface IActivity

View file

@ -16,8 +16,6 @@
// along with yavsc. If not, see <http://www.gnu.org/licenses/>.
//
using System;
namespace Yavsc
{
public interface IMobileDeviceDeclaration

View file

@ -1,5 +1,3 @@
using System;
namespace Yavsc.Abstract.Workflow
{
public interface IDecidableQuery: ITrackedEntity, IQuery

View file

@ -1,5 +1,3 @@
using System.Collections.Generic;
namespace Yavsc.Models.Process
{
public class Conjonction : List<IRequisition>, IRequisition

View file

@ -1,5 +1,3 @@
using System.Collections.Generic;
namespace Yavsc.Models.Process
{
public class Disjonction : List<IRequisition>, IRequisition

View file

@ -1,7 +1,3 @@
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Yavsc.Abstract.Workflow
{
public interface IExecutionData

View file

@ -1,4 +1,3 @@
using System.Collections.Generic;
using Yavsc.Models;
namespace Yavsc.Abstract.Workflow

View file

@ -1,6 +1,3 @@
using System.Collections.Generic;
using System.Linq;
namespace Yavsc.Abstract.Workflow
{
public class TaskManager : ITaskRunnerProvider
@ -17,4 +14,4 @@ namespace Yavsc.Abstract.Workflow
return runners.Where(r => r.GetType().Name.IndexOf(runnerName.Trim())>=0).ToArray();
}
}
}
}