@@ -19,7 +19,7 @@ public interface IResourceHookExecutor : IReadHookExecutor, IUpdateHookExecutor,
19
19
public interface ICreateHookExecutor
20
20
{
21
21
/// <summary>
22
- /// Executes the Before Cycle by firing the appropiate hooks if they are implemented.
22
+ /// Executes the Before Cycle by firing the appropriate hooks if they are implemented.
23
23
/// The returned set will be used in the actual operation in <see cref="DefaultResourceService{T}"/>.
24
24
/// <para />
25
25
/// Fires the <see cref="ResourceDefinition{T}.BeforeCreate"/>
@@ -34,7 +34,7 @@ public interface ICreateHookExecutor
34
34
/// <typeparam name="TResource">The type of the root entities</typeparam>
35
35
IEnumerable < TResource > BeforeCreate < TResource > ( IEnumerable < TResource > entities , ResourcePipeline pipeline ) where TResource : class , IIdentifiable ;
36
36
/// <summary>
37
- /// Executes the After Cycle by firing the appropiate hooks if they are implemented.
37
+ /// Executes the After Cycle by firing the appropriate hooks if they are implemented.
38
38
/// <para />
39
39
/// Fires the <see cref="ResourceDefinition{T}.AfterCreate"/>
40
40
/// hook where T = <typeparamref name="TResource"/> for values in parameter <paramref name="entities"/>.
@@ -51,7 +51,7 @@ public interface ICreateHookExecutor
51
51
public interface IDeleteHookExecutor
52
52
{
53
53
/// <summary>
54
- /// Executes the Before Cycle by firing the appropiate hooks if they are implemented.
54
+ /// Executes the Before Cycle by firing the appropriate hooks if they are implemented.
55
55
/// The returned set will be used in the actual operation in <see cref="DefaultResourceService{T}"/>.
56
56
/// <para />
57
57
/// Fires the <see cref="ResourceDefinition{T}.BeforeDelete"/>
@@ -68,7 +68,7 @@ public interface IDeleteHookExecutor
68
68
/// <typeparam name="TResource">The type of the root entities</typeparam>
69
69
IEnumerable < TResource > BeforeDelete < TResource > ( IEnumerable < TResource > entities , ResourcePipeline pipeline ) where TResource : class , IIdentifiable ;
70
70
/// <summary>
71
- /// Executes the After Cycle by firing the appropiate hooks if they are implemented.
71
+ /// Executes the After Cycle by firing the appropriate hooks if they are implemented.
72
72
/// <para />
73
73
/// Fires the <see cref="ResourceDefinition{T}.AfterDelete"/>
74
74
/// hook where T = <typeparamref name="TResource"/> for values in parameter <paramref name="entities"/>.
@@ -85,7 +85,7 @@ public interface IDeleteHookExecutor
85
85
public interface IReadHookExecutor
86
86
{
87
87
/// <summary>
88
- /// Executes the Before Cycle by firing the appropiate hooks if they are implemented.
88
+ /// Executes the Before Cycle by firing the appropriate hooks if they are implemented.
89
89
/// <para />
90
90
/// Fires the <see cref="ResourceDefinition{T}.BeforeRead"/>
91
91
/// hook where T = <typeparamref name="TResource"/> for the requested
@@ -97,7 +97,7 @@ public interface IReadHookExecutor
97
97
/// <typeparam name="TResource">The type of the request entity</typeparam>
98
98
void BeforeRead < TResource > ( ResourcePipeline pipeline , string stringId = null ) where TResource : class , IIdentifiable ;
99
99
/// <summary>
100
- /// Executes the After Cycle by firing the appropiate hooks if they are implemented.
100
+ /// Executes the After Cycle by firing the appropriate hooks if they are implemented.
101
101
/// <para />
102
102
/// Fires the <see cref="ResourceDefinition{T}.AfterRead"/> for every unique
103
103
/// entity type occuring in parameter <paramref name="entities"/>.
@@ -114,7 +114,7 @@ public interface IReadHookExecutor
114
114
public interface IUpdateHookExecutor
115
115
{
116
116
/// <summary>
117
- /// Executes the Before Cycle by firing the appropiate hooks if they are implemented.
117
+ /// Executes the Before Cycle by firing the appropriate hooks if they are implemented.
118
118
/// The returned set will be used in the actual operation in <see cref="DefaultResourceService{T}"/>.
119
119
/// <para />
120
120
/// Fires the <see cref="ResourceDefinition{T}.BeforeUpdate(IDiffableEntityHashSet{T}, ResourcePipeline)"/>
@@ -135,7 +135,7 @@ public interface IUpdateHookExecutor
135
135
/// <typeparam name="TResource">The type of the root entities</typeparam>
136
136
IEnumerable < TResource > BeforeUpdate < TResource > ( IEnumerable < TResource > entities , ResourcePipeline pipeline ) where TResource : class , IIdentifiable ;
137
137
/// <summary>
138
- /// Executes the After Cycle by firing the appropiate hooks if they are implemented.
138
+ /// Executes the After Cycle by firing the appropriate hooks if they are implemented.
139
139
/// <para />
140
140
/// Fires the <see cref="ResourceDefinition{T}.AfterUpdate"/>
141
141
/// hook where T = <typeparamref name="TResource"/> for values in parameter <paramref name="entities"/>.
@@ -155,7 +155,7 @@ public interface IUpdateHookExecutor
155
155
public interface IOnReturnHookExecutor
156
156
{
157
157
/// <summary>
158
- /// Executes the On Cycle by firing the appropiate hooks if they are implemented.
158
+ /// Executes the On Cycle by firing the appropriate hooks if they are implemented.
159
159
/// <para />
160
160
/// Fires the <see cref="ResourceDefinition{T}.OnReturn"/> for every unique
161
161
/// entity type occuring in parameter <paramref name="entities"/>.
0 commit comments