File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
src/MyTested.AspNetCore.Mvc.ModelState Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
namespace MyTested . AspNetCore . Mvc . Builders . Contracts . Models
2
2
{
3
+ /// <summary>
4
+ /// Used for adding AndAlso() method to the <see cref="Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> builder.
5
+ /// </summary>
3
6
public interface IAndModelStateBuilder : IModelStateBuilder
4
7
{
5
8
/// <summary>
6
- /// Used for adding AndAlso() method to the <see cref="Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> builder .
9
+ /// AndAlso method for better readability when building <see cref="Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.
7
10
/// </summary>
8
11
/// <returns>The same <see cref="IModelStateBuilder"/>.</returns>
9
12
IModelStateBuilder AndAlso ( ) ;
Original file line number Diff line number Diff line change 3
3
using System . Collections . Generic ;
4
4
using Microsoft . AspNetCore . Mvc . ModelBinding ;
5
5
using Microsoft . AspNetCore . Routing ;
6
- using MyTested . AspNetCore . Mvc . Builders . Contracts . Models ;
7
- using MyTested . AspNetCore . Mvc . Internal . TestContexts ;
8
- using MyTested . AspNetCore . Mvc . Utilities . Extensions ;
6
+ using Contracts . Models ;
7
+ using Internal . TestContexts ;
8
+ using Utilities . Extensions ;
9
9
10
10
/// <summary>
11
11
/// Used for building <see cref="ModelStateDictionary"/>
Original file line number Diff line number Diff line change 5
5
using Builders . Contracts . Base ;
6
6
using Builders . Contracts . Models ;
7
7
using Builders . Models ;
8
- using MyTested . AspNetCore . Mvc . Internal . TestContexts ;
8
+ using Internal . TestContexts ;
9
9
10
10
/// <summary>
11
11
/// Contains extension methods for <see cref="IBaseTestBuilderWithComponentBuilder{TBuilder}"/>.
You can’t perform that action at this time.
0 commit comments