This repository was archived by the owner on Feb 29, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 1
1
global using System ;
2
2
global using System . Collections . Generic ;
3
3
global using System . Linq ;
4
+ global using System . Linq . Expressions ;
5
+ global using System . Threading ;
4
6
global using System . Threading . Tasks ;
5
7
global using CustomLibrary . EFCore . EFCore . Core ;
6
8
global using CustomLibrary . EFCore . EFCore . Core . Interfaces ;
7
9
global using CustomLibrary . EFCore . EFCore . Infrastructure . Interfaces ;
8
10
global using CustomLibrary . EFCore . EFCore . Infrastructure . Repository ;
11
+ global using CustomLibrary . EFCore . Models . Enums ;
9
12
global using HealthChecks . UI . Client ;
10
13
global using Microsoft . AspNetCore . Builder ;
11
14
global using Microsoft . AspNetCore . Diagnostics . HealthChecks ;
12
15
global using Microsoft . AspNetCore . Http ;
13
16
global using Microsoft . EntityFrameworkCore ;
17
+ global using Microsoft . EntityFrameworkCore . Query ;
14
18
global using Microsoft . Extensions . DependencyInjection ;
15
- global using Microsoft . Extensions . Diagnostics . HealthChecks ;
16
- global using NET6CustomLibrary . EFCore ;
19
+ global using Microsoft . Extensions . Diagnostics . HealthChecks ;
Original file line number Diff line number Diff line change
1
+ namespace CustomLibrary . EFCore . Models . Enums ;
2
+
3
+ public enum OrderType
4
+ {
5
+ Ascending = 0 ,
6
+ Descending = 1
7
+ }
Original file line number Diff line number Diff line change
1
+ namespace CustomLibrary . EFCore . Models . ViewModels ;
2
+
3
+ public class ListViewModel < T >
4
+ {
5
+ public List < T > Results { get ; set ; }
6
+ public int TotalCount { get ; set ; }
7
+ }
You can’t perform that action at this time.
0 commit comments