Last active
February 3, 2018 11:43
-
-
Save rusith/51d157d59ab1e3a954ff03cccd7e3ea0 to your computer and use it in GitHub Desktop.
Revisions
-
rusith revised this gist
Feb 3, 2018 . 1 changed file with 27 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ ├── bin │ └── Debug │ └── netstandard2.0 ├── Dapper ├── Infrastructure │ ├── Actions │ │ ├── Abstract │ │ └── Concrete │ ├── Collections │ │ ├── Abstract │ │ └── Concrete │ ├── Enum │ ├── Filters │ │ ├── Abstract │ │ └── Concrete │ ├── Interfaces │ ├── Models │ │ ├── Abstract │ │ │ └── Context │ │ └── Concrete │ │ └── Context │ └── Repositories ├── Modules ├── obj │ └── Debug │ └── netstandard2.0 └── Providers -
rusith revised this gist
Feb 3, 2018 . 1 changed file with 2 additions and 19 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,28 +1,11 @@ ├── BestAppEver │ ├── Modules ├── BestAppEver.API │ ├── Controllers ├── BestAppEver.BL │ ├── Services ├── BestAppEver.DAL │ ├── Modules │ └── Providers └── BestAppEver.UnitTests ├── Providers -
rusith created this gist
Feb 3, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ ├── BestAppEver │ ├── Injection │ ├── Logging │ ├── Models │ │ └── Data │ ├── Providers │ │ ├── Common │ │ └── Data │ ├── Services │ │ └── Business │ └── Tools ├── BestAppEver.API │ ├── Controllers │ ├── Providers │ │ └── Common ├── BestAppEver.BL │ ├── Services │ └── Tools ├── BestAppEver.DAL │ ├── Modules │ └── Providers └── BestAppEver.UnitTests ├── API │ └── Controllers ├── Helpers ├── Providers ├── Services └── Tools