├── .gitignore ├── README.md └── src ├── DTE.CORE ├── ConnectionFactory.cs ├── Cores │ ├── DTECore.cs │ └── SQLCores │ │ ├── MSSQLCore.cs │ │ ├── MySQLCore.cs │ │ └── PostgreSQLCore.cs ├── DAL │ ├── MSSQLDAL.cs │ ├── MySQLDAL.cs │ └── PostgreSQLDAL.cs ├── DTE.CORE.csproj ├── DTECore.cs ├── DTEFactory.cs ├── Helpers │ ├── MSSQLHelper.cs │ ├── MYSQLHelper.cs │ └── ModelCreateHelper.cs ├── Interfaces │ ├── IAttributes.cs │ ├── IDTE.cs │ ├── ISettings.cs │ └── ITypeConverter.cs ├── Properties │ └── AssemblyInfo.cs ├── SupportedConnections.cs ├── app.config └── packages.config ├── DTE.sln └── DTE ├── App.config ├── App.xaml ├── App.xaml.cs ├── Architecture ├── Microservice │ └── Microservice.cs └── Peasy │ ├── Peasy.cs │ └── PeasyHelper.cs ├── ConnectionCore ├── Builders │ ├── BuilderBase.cs │ ├── MSSQLConnectionBuilder.cs │ ├── MySQLConnectionBuilder.cs │ └── NpgSQLConnectionBuilder.cs ├── ConnectionBuilderFactory.cs └── IConnectionBuilder.cs ├── Converters ├── InverseBooleanConverter.cs └── VisibilityConverter.cs ├── Cores ├── DTESettings.cs └── DTEXMLConnection.cs ├── DTE.csproj ├── Domains ├── Attributes.cs ├── ColumnInfo.cs ├── DataBindingBase.cs ├── Database.cs ├── Interfaces │ └── ITreeViewModel.cs ├── RelayCommand.cs ├── Settings.cs ├── Table.cs ├── TreeViewModel.cs └── TypeConverter.cs ├── Globals.cs ├── Images ├── connect.png ├── create_into_file.png ├── main.png ├── mssql.png ├── mysql.png ├── postgre.png ├── settings.png └── template.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── Entypo-license.txt ├── Entypo.ttf ├── Icons.xaml ├── IconsNonShared.xaml ├── MetroBoost.xaml ├── WindowsIcons-license.txt ├── csharp.xsd ├── csharp.xshd ├── mysql.xaml ├── settings ├── sql.xsd └── sql.xshd ├── Templates ├── FullProperty.tpl ├── PeasyBaseDataProxy.tpl ├── PeasyBaseDomain.tpl ├── PeasyBaseRepository.tpl ├── PeasyBaseService.tpl ├── PeasyDataProxy.tpl ├── PeasyDomain.tpl ├── PeasyRepository.tpl ├── PeasyService.tpl ├── Property.tpl └── class.tpl ├── ViewModels ├── ConnectionManagerVM.cs ├── CreateIntoFilesVM.cs ├── DataAnnotationsVM.cs ├── MainWindowVM.cs ├── PeasyVM.cs ├── QueryToEntityVM.cs ├── SelectToEntityVM.cs ├── TemplateVM.cs ├── ThemeManager.cs └── TypeConversionVM.cs ├── Views └── Windows │ ├── ConnectionManagerWin.xaml │ ├── ConnectionManagerWin.xaml.cs │ ├── CreateIntoFileWindow.xaml │ ├── CreateIntoFileWindow.xaml.cs │ ├── DataAnnotationsWindow.xaml │ ├── DataAnnotationsWindow.xaml.cs │ ├── GeneratePeasyWindow.xaml │ ├── GeneratePeasyWindow.xaml.cs │ ├── QueryToEntityWindow.xaml │ ├── QueryToEntityWindow.xaml.cs │ ├── SelectToEntity.xaml │ ├── SelectToEntity.xaml.cs │ ├── TemplateWindow.xaml │ ├── TemplateWindow.xaml.cs │ ├── TypeConversion.xaml │ └── TypeConversion.xaml.cs ├── dte-logo-v1.ico ├── dte-logo-v1.png ├── dte.ico ├── gmap.xml ├── packages.config ├── robots.txt └── settings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/README.md -------------------------------------------------------------------------------- /src/DTE.CORE/ConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/ConnectionFactory.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Cores/DTECore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Cores/DTECore.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Cores/SQLCores/MSSQLCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Cores/SQLCores/MSSQLCore.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Cores/SQLCores/MySQLCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Cores/SQLCores/MySQLCore.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Cores/SQLCores/PostgreSQLCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Cores/SQLCores/PostgreSQLCore.cs -------------------------------------------------------------------------------- /src/DTE.CORE/DAL/MSSQLDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/DAL/MSSQLDAL.cs -------------------------------------------------------------------------------- /src/DTE.CORE/DAL/MySQLDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/DAL/MySQLDAL.cs -------------------------------------------------------------------------------- /src/DTE.CORE/DAL/PostgreSQLDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/DAL/PostgreSQLDAL.cs -------------------------------------------------------------------------------- /src/DTE.CORE/DTE.CORE.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/DTE.CORE.csproj -------------------------------------------------------------------------------- /src/DTE.CORE/DTECore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/DTECore.cs -------------------------------------------------------------------------------- /src/DTE.CORE/DTEFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/DTEFactory.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Helpers/MSSQLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Helpers/MSSQLHelper.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Helpers/MYSQLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Helpers/MYSQLHelper.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Helpers/ModelCreateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Helpers/ModelCreateHelper.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Interfaces/IAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Interfaces/IAttributes.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Interfaces/IDTE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Interfaces/IDTE.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Interfaces/ISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Interfaces/ISettings.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Interfaces/ITypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Interfaces/ITypeConverter.cs -------------------------------------------------------------------------------- /src/DTE.CORE/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DTE.CORE/SupportedConnections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/SupportedConnections.cs -------------------------------------------------------------------------------- /src/DTE.CORE/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/app.config -------------------------------------------------------------------------------- /src/DTE.CORE/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.CORE/packages.config -------------------------------------------------------------------------------- /src/DTE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE.sln -------------------------------------------------------------------------------- /src/DTE/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/App.config -------------------------------------------------------------------------------- /src/DTE/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/App.xaml -------------------------------------------------------------------------------- /src/DTE/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/App.xaml.cs -------------------------------------------------------------------------------- /src/DTE/Architecture/Microservice/Microservice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Architecture/Microservice/Microservice.cs -------------------------------------------------------------------------------- /src/DTE/Architecture/Peasy/Peasy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Architecture/Peasy/Peasy.cs -------------------------------------------------------------------------------- /src/DTE/Architecture/Peasy/PeasyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Architecture/Peasy/PeasyHelper.cs -------------------------------------------------------------------------------- /src/DTE/ConnectionCore/Builders/BuilderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ConnectionCore/Builders/BuilderBase.cs -------------------------------------------------------------------------------- /src/DTE/ConnectionCore/Builders/MSSQLConnectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ConnectionCore/Builders/MSSQLConnectionBuilder.cs -------------------------------------------------------------------------------- /src/DTE/ConnectionCore/Builders/MySQLConnectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ConnectionCore/Builders/MySQLConnectionBuilder.cs -------------------------------------------------------------------------------- /src/DTE/ConnectionCore/Builders/NpgSQLConnectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ConnectionCore/Builders/NpgSQLConnectionBuilder.cs -------------------------------------------------------------------------------- /src/DTE/ConnectionCore/ConnectionBuilderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ConnectionCore/ConnectionBuilderFactory.cs -------------------------------------------------------------------------------- /src/DTE/ConnectionCore/IConnectionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ConnectionCore/IConnectionBuilder.cs -------------------------------------------------------------------------------- /src/DTE/Converters/InverseBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Converters/InverseBooleanConverter.cs -------------------------------------------------------------------------------- /src/DTE/Converters/VisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Converters/VisibilityConverter.cs -------------------------------------------------------------------------------- /src/DTE/Cores/DTESettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Cores/DTESettings.cs -------------------------------------------------------------------------------- /src/DTE/Cores/DTEXMLConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Cores/DTEXMLConnection.cs -------------------------------------------------------------------------------- /src/DTE/DTE.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/DTE.csproj -------------------------------------------------------------------------------- /src/DTE/Domains/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Domains/Attributes.cs -------------------------------------------------------------------------------- /src/DTE/Domains/ColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Domains/ColumnInfo.cs -------------------------------------------------------------------------------- /src/DTE/Domains/DataBindingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Domains/DataBindingBase.cs -------------------------------------------------------------------------------- /src/DTE/Domains/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Domains/Database.cs -------------------------------------------------------------------------------- /src/DTE/Domains/Interfaces/ITreeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Domains/Interfaces/ITreeViewModel.cs -------------------------------------------------------------------------------- /src/DTE/Domains/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Domains/RelayCommand.cs -------------------------------------------------------------------------------- /src/DTE/Domains/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Domains/Settings.cs -------------------------------------------------------------------------------- /src/DTE/Domains/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Domains/Table.cs -------------------------------------------------------------------------------- /src/DTE/Domains/TreeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Domains/TreeViewModel.cs -------------------------------------------------------------------------------- /src/DTE/Domains/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Domains/TypeConverter.cs -------------------------------------------------------------------------------- /src/DTE/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Globals.cs -------------------------------------------------------------------------------- /src/DTE/Images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Images/connect.png -------------------------------------------------------------------------------- /src/DTE/Images/create_into_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Images/create_into_file.png -------------------------------------------------------------------------------- /src/DTE/Images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Images/main.png -------------------------------------------------------------------------------- /src/DTE/Images/mssql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Images/mssql.png -------------------------------------------------------------------------------- /src/DTE/Images/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Images/mysql.png -------------------------------------------------------------------------------- /src/DTE/Images/postgre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Images/postgre.png -------------------------------------------------------------------------------- /src/DTE/Images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Images/settings.png -------------------------------------------------------------------------------- /src/DTE/Images/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Images/template.png -------------------------------------------------------------------------------- /src/DTE/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/MainWindow.xaml -------------------------------------------------------------------------------- /src/DTE/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/DTE/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DTE/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/DTE/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Properties/Resources.resx -------------------------------------------------------------------------------- /src/DTE/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/DTE/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Properties/Settings.settings -------------------------------------------------------------------------------- /src/DTE/Resources/Entypo-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/Entypo-license.txt -------------------------------------------------------------------------------- /src/DTE/Resources/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/Entypo.ttf -------------------------------------------------------------------------------- /src/DTE/Resources/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/Icons.xaml -------------------------------------------------------------------------------- /src/DTE/Resources/IconsNonShared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/IconsNonShared.xaml -------------------------------------------------------------------------------- /src/DTE/Resources/MetroBoost.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/MetroBoost.xaml -------------------------------------------------------------------------------- /src/DTE/Resources/WindowsIcons-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/WindowsIcons-license.txt -------------------------------------------------------------------------------- /src/DTE/Resources/csharp.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/csharp.xsd -------------------------------------------------------------------------------- /src/DTE/Resources/csharp.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/csharp.xshd -------------------------------------------------------------------------------- /src/DTE/Resources/mysql.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/mysql.xaml -------------------------------------------------------------------------------- /src/DTE/Resources/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/settings -------------------------------------------------------------------------------- /src/DTE/Resources/sql.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/sql.xsd -------------------------------------------------------------------------------- /src/DTE/Resources/sql.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Resources/sql.xshd -------------------------------------------------------------------------------- /src/DTE/Templates/FullProperty.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Templates/FullProperty.tpl -------------------------------------------------------------------------------- /src/DTE/Templates/PeasyBaseDataProxy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Templates/PeasyBaseDataProxy.tpl -------------------------------------------------------------------------------- /src/DTE/Templates/PeasyBaseDomain.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Templates/PeasyBaseDomain.tpl -------------------------------------------------------------------------------- /src/DTE/Templates/PeasyBaseRepository.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Templates/PeasyBaseRepository.tpl -------------------------------------------------------------------------------- /src/DTE/Templates/PeasyBaseService.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Templates/PeasyBaseService.tpl -------------------------------------------------------------------------------- /src/DTE/Templates/PeasyDataProxy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Templates/PeasyDataProxy.tpl -------------------------------------------------------------------------------- /src/DTE/Templates/PeasyDomain.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Templates/PeasyDomain.tpl -------------------------------------------------------------------------------- /src/DTE/Templates/PeasyRepository.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Templates/PeasyRepository.tpl -------------------------------------------------------------------------------- /src/DTE/Templates/PeasyService.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Templates/PeasyService.tpl -------------------------------------------------------------------------------- /src/DTE/Templates/Property.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Templates/Property.tpl -------------------------------------------------------------------------------- /src/DTE/Templates/class.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Templates/class.tpl -------------------------------------------------------------------------------- /src/DTE/ViewModels/ConnectionManagerVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ViewModels/ConnectionManagerVM.cs -------------------------------------------------------------------------------- /src/DTE/ViewModels/CreateIntoFilesVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ViewModels/CreateIntoFilesVM.cs -------------------------------------------------------------------------------- /src/DTE/ViewModels/DataAnnotationsVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ViewModels/DataAnnotationsVM.cs -------------------------------------------------------------------------------- /src/DTE/ViewModels/MainWindowVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ViewModels/MainWindowVM.cs -------------------------------------------------------------------------------- /src/DTE/ViewModels/PeasyVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ViewModels/PeasyVM.cs -------------------------------------------------------------------------------- /src/DTE/ViewModels/QueryToEntityVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ViewModels/QueryToEntityVM.cs -------------------------------------------------------------------------------- /src/DTE/ViewModels/SelectToEntityVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ViewModels/SelectToEntityVM.cs -------------------------------------------------------------------------------- /src/DTE/ViewModels/TemplateVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ViewModels/TemplateVM.cs -------------------------------------------------------------------------------- /src/DTE/ViewModels/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ViewModels/ThemeManager.cs -------------------------------------------------------------------------------- /src/DTE/ViewModels/TypeConversionVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/ViewModels/TypeConversionVM.cs -------------------------------------------------------------------------------- /src/DTE/Views/Windows/ConnectionManagerWin.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/ConnectionManagerWin.xaml -------------------------------------------------------------------------------- /src/DTE/Views/Windows/ConnectionManagerWin.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/ConnectionManagerWin.xaml.cs -------------------------------------------------------------------------------- /src/DTE/Views/Windows/CreateIntoFileWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/CreateIntoFileWindow.xaml -------------------------------------------------------------------------------- /src/DTE/Views/Windows/CreateIntoFileWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/CreateIntoFileWindow.xaml.cs -------------------------------------------------------------------------------- /src/DTE/Views/Windows/DataAnnotationsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/DataAnnotationsWindow.xaml -------------------------------------------------------------------------------- /src/DTE/Views/Windows/DataAnnotationsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/DataAnnotationsWindow.xaml.cs -------------------------------------------------------------------------------- /src/DTE/Views/Windows/GeneratePeasyWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/GeneratePeasyWindow.xaml -------------------------------------------------------------------------------- /src/DTE/Views/Windows/GeneratePeasyWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/GeneratePeasyWindow.xaml.cs -------------------------------------------------------------------------------- /src/DTE/Views/Windows/QueryToEntityWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/QueryToEntityWindow.xaml -------------------------------------------------------------------------------- /src/DTE/Views/Windows/QueryToEntityWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/QueryToEntityWindow.xaml.cs -------------------------------------------------------------------------------- /src/DTE/Views/Windows/SelectToEntity.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/SelectToEntity.xaml -------------------------------------------------------------------------------- /src/DTE/Views/Windows/SelectToEntity.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/SelectToEntity.xaml.cs -------------------------------------------------------------------------------- /src/DTE/Views/Windows/TemplateWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/TemplateWindow.xaml -------------------------------------------------------------------------------- /src/DTE/Views/Windows/TemplateWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/TemplateWindow.xaml.cs -------------------------------------------------------------------------------- /src/DTE/Views/Windows/TypeConversion.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/TypeConversion.xaml -------------------------------------------------------------------------------- /src/DTE/Views/Windows/TypeConversion.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/Views/Windows/TypeConversion.xaml.cs -------------------------------------------------------------------------------- /src/DTE/dte-logo-v1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/dte-logo-v1.ico -------------------------------------------------------------------------------- /src/DTE/dte-logo-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/dte-logo-v1.png -------------------------------------------------------------------------------- /src/DTE/dte.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/dte.ico -------------------------------------------------------------------------------- /src/DTE/gmap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/gmap.xml -------------------------------------------------------------------------------- /src/DTE/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/packages.config -------------------------------------------------------------------------------- /src/DTE/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/robots.txt -------------------------------------------------------------------------------- /src/DTE/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illesarnold/DTE/HEAD/src/DTE/settings --------------------------------------------------------------------------------