You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
609 B
20 lines
609 B
namespace CounsellorBL
|
|
{
|
|
using OT.COM.ArsenalDB;
|
|
public class SingleDataTableTemplate<TEntity> : ModelDataTemplate<TEntity> where TEntity : EntityBase, new()
|
|
{
|
|
public SingleDataTableTemplate()
|
|
{
|
|
|
|
dgCreateCommandGenerator = createSingleCommandGeneratorDefault;
|
|
|
|
dgReadCommandGenerator = readCommandGeneratorDefault;
|
|
|
|
dgUpdateCommandGenerator = updateSingleCommandGeneratorDefault;
|
|
|
|
dgDeleteCommandGenerator = deleteSingleCommandGeneratorDefault;
|
|
|
|
dgCopyCommandGenerator = copyCommandGeneratorDefault;
|
|
}
|
|
}
|
|
}
|