Change field viewer
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
Force,
|
||||
Moment,
|
||||
Curvature,
|
||||
DistributedLoad
|
||||
DistributedLoad,
|
||||
Strain
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
{
|
||||
public interface IRepositoryOperation<T, V>
|
||||
{
|
||||
void RemoveAll();
|
||||
void Remove(V entity);
|
||||
void Remove(IEnumerable<V> entities);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user