@@ -69,7 +69,7 @@ public RepositoryDeleteConductor(IRepository<T> repository)
69
69
/// <param name="deletedById">Id of user deleting the item</param>
70
70
/// <param name="soft">Boolean flag for soft-deleting the item</param>
71
71
/// <returns></returns>
72
- public virtual IResult < bool > Delete ( T o , long ? deletedById = default ( long ? ) , bool soft = true ) => _repository . Delete ( o , deletedById , soft ) ;
72
+ public virtual IResult < bool > Delete ( T o , long ? deletedById = default ( long ? ) , bool soft = true ) => _repository . Delete ( o , deletedById , soft ) ;
73
73
74
74
/// <summary>
75
75
/// Ability to delete a list of entities by batch size.
@@ -79,14 +79,14 @@ public RepositoryDeleteConductor(IRepository<T> repository)
79
79
/// <param name="batchSize">Number of items to include in a batch, defaults to 100</param>
80
80
/// <param name="soft">Boolean flag for soft-deleting the items</param>
81
81
/// <returns></returns>
82
- public virtual IResult < bool > Delete ( IEnumerable < T > items , long ? deletedById = default ( long ? ) , long batchSize = 100 , bool soft = true ) => _repository . Delete ( items , deletedById , batchSize , soft ) ;
82
+ public virtual IResult < bool > Delete ( IEnumerable < T > items , long ? deletedById = default ( long ? ) , long batchSize = 100 , bool soft = true ) => _repository . Delete ( items , deletedById , batchSize , soft ) ;
83
83
84
84
/// <summary>
85
85
/// Ability to restore a soft-deleted entity using the entity itself.
86
86
/// </summary>
87
87
/// <param name="o">Entity to be restored</param>
88
88
/// <returns></returns>
89
- public virtual IResult < bool > Restore ( T o ) => _repository . Restore ( o ) ;
89
+ public virtual IResult < bool > Restore ( T o ) => _repository . Restore ( o ) ;
90
90
91
91
/// <summary>
92
92
/// Ability to restore a soft-deleted entity using the entity id.
0 commit comments