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 characters
| using Dapper; | |
| using Dal; | |
| using System.Collections.Generic; | |
| using System.Threading.Tasks; | |
| // Example implementation of the GenericRepository | |
| // Our model. | |
| public class Customer { |
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 characters
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Runtime.InteropServices; | |
| namespace Maxstupo.Utility { | |
| public enum FileType { | |
| File = 0, | |
| Folder = 1 |
OlderNewer