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 11global using System ;
22global using System . Collections . Generic ;
33global using System . Linq ;
4+ global using System . Linq . Expressions ;
5+ global using System . Threading ;
46global using System . Threading . Tasks ;
57global using CustomLibrary . EFCore . EFCore . Core ;
68global using CustomLibrary . EFCore . EFCore . Core . Interfaces ;
79global using CustomLibrary . EFCore . EFCore . Infrastructure . Interfaces ;
810global using CustomLibrary . EFCore . EFCore . Infrastructure . Repository ;
11+ global using CustomLibrary . EFCore . Models . Enums ;
912global using HealthChecks . UI . Client ;
1013global using Microsoft . AspNetCore . Builder ;
1114global using Microsoft . AspNetCore . Diagnostics . HealthChecks ;
1215global using Microsoft . AspNetCore . Http ;
1316global using Microsoft . EntityFrameworkCore ;
17+ global using Microsoft . EntityFrameworkCore . Query ;
1418global 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