Ejemplo n.º 1
0
 public OperationsFactory(IStructureOperations StructureOperations, INodeOperations NodeOperations, IFieldOperations FieldOperations, IUserOperations UserOperations)
 {
     _structureoperations = StructureOperations ?? _structureoperations;
     _nodeoperations      = NodeOperations ?? _nodeoperations;
     _fieldoperations     = FieldOperations ?? _fieldoperations;
     _useroperations      = UserOperations ?? _useroperations;
 }
Ejemplo n.º 2
0
 public NodeServiceController() : base()
 {
     _structops = OperationsFactory.StructureOperations;
     _nodeops   = OperationsFactory.NodeOperations;
     _fieldops  = OperationsFactory.FieldOperations;
 }