├── .gitignore ├── Level 1 ├── 10 │ ├── 07_Avionika │ │ ├── 07_Avionika.sln │ │ └── 07_Avionika │ │ │ ├── 07_Avionika.csproj │ │ │ ├── App.config │ │ │ ├── BoardSystem.cs │ │ │ ├── Devices │ │ │ ├── BaseDevice.cs │ │ │ ├── Engine.cs │ │ │ ├── IBaseDevice.cs │ │ │ ├── PressureSensor.cs │ │ │ ├── Sensor.cs │ │ │ └── VoltageSensor.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 10_Delegates │ │ ├── 10_Delegates.sln │ │ └── 10_Delegates │ │ │ ├── 10_Delegates.csproj │ │ │ ├── App.config │ │ │ ├── Delegates.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── 10_Events │ │ ├── 10_Events.sln │ │ └── 10_Events │ │ ├── 10_Events.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 11 │ ├── 11_Collections │ │ ├── 11_Collections.sln │ │ └── 11_Collections │ │ │ ├── 11_Collections.csproj │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── 11_CustomCollection │ │ ├── 11_CustomCollection.sln │ │ └── 11_CustomCollection │ │ ├── 11_CustomCollection.csproj │ │ ├── App.config │ │ ├── PrintableList.cs │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 12 │ ├── 12_Enumerables │ │ ├── 12_Enumerables.sln │ │ └── 12_Enumerables │ │ │ ├── 12_Enumerables.csproj │ │ │ ├── App.config │ │ │ ├── Book.cs │ │ │ ├── Library.cs │ │ │ ├── Library2.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 12_TestCPPMemory │ │ ├── 12_TestCPPMemory.sln │ │ └── 12_TestCPPMemory │ │ │ ├── 12_TestCPPMemory.cpp │ │ │ ├── 12_TestCPPMemory.vcxproj │ │ │ ├── 12_TestCPPMemory.vcxproj.filters │ │ │ ├── ReadMe.txt │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ └── 12_TestCSharpMemory │ │ ├── 12_TestCSharpMemory.sln │ │ └── 12_TestCSharpMemory │ │ ├── 12_TestCSharpMemory.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 13 │ ├── 13_LINQ │ │ ├── 13_LINQ.sln │ │ └── 13_LINQ │ │ │ ├── 13_LINQ.csproj │ │ │ ├── App.config │ │ │ ├── Extensions.cs │ │ │ ├── Person.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── 13_LINQ2 │ │ ├── 13_LINQ2.sln │ │ └── 13_LINQ2 │ │ ├── 13_LINQ2.csproj │ │ ├── App.config │ │ ├── Person.cs │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 14 │ ├── 14_Features │ │ ├── 14_Features.sln │ │ ├── 14_Features │ │ │ ├── 14_Features.csproj │ │ │ ├── App.config │ │ │ ├── Class1.cs │ │ │ ├── DbManager.cs │ │ │ ├── Del.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── WindowsFormsApplication1 │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ └── WindowsFormsApplication1.csproj │ ├── 14_LINQ3 │ │ ├── 14_LINQ3.sln │ │ └── 14_LINQ3 │ │ │ ├── 14_LINQ3.csproj │ │ │ ├── App.config │ │ │ ├── Company.cs │ │ │ ├── Person.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── 14_Variativeness │ │ ├── 14_Variativeness.sln │ │ └── 14_Variativeness │ │ ├── 14_Variativeness.csproj │ │ ├── App.config │ │ ├── Container.cs │ │ ├── IContainer.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── Shape.cs ├── 16 │ └── 16_Threading │ │ ├── 16_Threading.csproj │ │ ├── 16_Threading.sln │ │ ├── 16_Threading.v12.suo │ │ ├── App.config │ │ ├── Atomic.cs │ │ ├── AtomicIncrement.cs │ │ ├── DeadLock.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SharedData.cs ├── 02_GuessNumber │ ├── 02_GuessNumber.sln │ └── 02_GuessNumber │ │ ├── 02_GuessNumber.csproj │ │ ├── App.config │ │ ├── Class10.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── xxx.cs ├── 02_Types │ ├── 02_Types.sln │ └── 02_Types │ │ ├── 02_Types.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 04_Converter │ ├── 04_Converter.sln │ ├── 04_Converter │ │ ├── 04_Converter.csproj │ │ ├── Converter.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── ConverterTest │ │ ├── ConverterTest.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── UnitTest1.cs ├── 04_Exceptions │ ├── 04_Exceptions.sln │ ├── 04_Exceptions │ │ ├── 04_Exceptions.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── ReportLib │ │ ├── Class1.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── ReportException.cs │ │ └── ReportLib.csproj ├── 05_Files │ ├── 05_Files.sln │ └── 05_Files │ │ ├── 05_Files.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 05_Streams │ ├── 05_Streams.sln │ └── 05_Streams │ │ ├── 05_Streams.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 06_NewTypes │ ├── 06_NewTypes.sln │ └── 06_NewTypes │ │ ├── 06_NewTypes.csproj │ │ ├── App.config │ │ ├── Day.cs │ │ ├── Input.cs │ │ ├── Person.cs │ │ ├── PersonInfo.cs │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 07_Avionika │ ├── 07_Avionika.sln │ └── 07_Avionika │ │ ├── 07_Avionika.csproj │ │ ├── App.config │ │ ├── BoardSystem.cs │ │ ├── Engine.cs │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 07_Classes │ ├── 07_Classes.sln │ ├── 07_Classes │ │ ├── 07_Classes.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Program2.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── Person.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 08 │ ├── 07_Avionika │ │ ├── 07_Avionika.sln │ │ └── 07_Avionika │ │ │ ├── 07_Avionika.csproj │ │ │ ├── App.config │ │ │ ├── BoardSystem.cs │ │ │ ├── Devices │ │ │ ├── BaseDevice.cs │ │ │ ├── Engine.cs │ │ │ ├── IBaseDevice.cs │ │ │ └── Sensor.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── 08_DemoInterfaces │ │ ├── 08_DemoInterfaces.sln │ │ └── 08_DemoInterfaces │ │ ├── 08_DemoInterfaces.csproj │ │ ├── App.config │ │ ├── MyComparer.cs │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── 09 │ ├── 07_Avionika │ │ ├── 07_Avionika.sln │ │ └── 07_Avionika │ │ │ ├── 07_Avionika.csproj │ │ │ ├── App.config │ │ │ ├── BoardSystem.cs │ │ │ ├── Devices │ │ │ ├── BaseDevice.cs │ │ │ ├── Engine.cs │ │ │ ├── IBaseDevice.cs │ │ │ └── Sensor.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── 09_Matrix │ │ ├── 09_Matrix.sln │ │ └── 09_Matrix │ │ ├── 09_Matrix.csproj │ │ ├── App.config │ │ ├── Matrix.cs │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── Books │ ├── C# 5.0 in a Nutshell [Albahari Albahari] [2012] [pdf] [www.bookstor.ru].pdf │ ├── Mark Michaelis - Essential C# 4.0, 3rd Edition 2010.pdf │ ├── Microsoft.Press.CLR.via.Csharp.4th.Edition.Oct.2012.pdf │ ├── Skeet J. - C# in Depth, 3rd Edition - 2013.pdf │ ├── Рихтер Дж. - CLR via C#. Программирование на платформе Microsoft .NET Framework 4.5 на языке C# (Мастер-класс) - 2013.pdf │ ├── Рихтер Дж. - CLR via C#. Программирование на платформе Microsoft .NET Framework 4.0 на языке C# (Мастер-класс) - 2012.pdf │ ├── Скит Дж. - C# программирование для профессионалов - 2011.djvu │ └── Троелсен Э. - Язык программирования C# 2010 и платформа .NET 4 - 2010.djvu └── МатериалНепройденный.txt ├── Level 2 ├── 10 │ ├── DemoExpressionTree │ │ ├── ConsoleApplication1.sln │ │ └── ConsoleApplication1 │ │ │ ├── App.config │ │ │ ├── ConsoleApplication1.csproj │ │ │ ├── Customers.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── Inspector │ │ ├── Inspector.BLL │ │ ├── Bootstrapper.cs │ │ ├── Inspector.BLL.csproj │ │ ├── Managers │ │ │ └── CatalogManager.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.DAL │ │ ├── 00_Data.sql │ │ ├── 00_Initial.sql │ │ ├── AdoNet │ │ │ ├── AdoNetConnectionFactory.cs │ │ │ ├── AdoNetDbContext.cs │ │ │ ├── AdoNetUnitOfWork.cs │ │ │ └── GenericRepository.cs │ │ ├── Bootstrapper.cs │ │ ├── Db.cs │ │ ├── Exceptions │ │ │ └── DalException.cs │ │ ├── Inspector.DAL.csproj │ │ ├── Interfaces │ │ │ ├── IConnectionFactory.cs │ │ │ ├── IDbContext.cs │ │ │ ├── IRepository.cs │ │ │ └── IUnitOfWork.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.Domain │ │ ├── Inspector.Domain.csproj │ │ ├── Interfaces │ │ │ ├── ICatalogManager.cs │ │ │ └── IReportManager.cs │ │ ├── Ioc │ │ │ ├── IoC.cs │ │ │ └── IoCException.cs │ │ ├── Misc │ │ │ ├── Filter.cs │ │ │ └── TableAttribute.cs │ │ ├── Models │ │ │ ├── Area.cs │ │ │ ├── FinIndex.cs │ │ │ ├── GenericEntity.cs │ │ │ ├── IEntity.cs │ │ │ ├── OrgType.cs │ │ │ └── Organization.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.GUI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CatalogManager.cs │ │ ├── Inspector.GUI.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Inspector.Test │ │ ├── BLL │ │ │ └── CatalogManagerTest.cs │ │ ├── DAL │ │ │ └── GenericRepositoryTest.cs │ │ ├── Helpers │ │ │ └── DbContextHelper.cs │ │ ├── Inspector.Test.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.sln │ │ └── packages │ │ └── repositories.config ├── 11 │ └── Inspector │ │ ├── Inspector.BLL │ │ ├── Bootstrapper.cs │ │ ├── Inspector.BLL.csproj │ │ ├── Managers │ │ │ ├── CatalogManager.cs │ │ │ ├── FinancialManager.cs │ │ │ └── GenericManager.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.DAL │ │ ├── 00_Data.sql │ │ ├── 00_Initial.sql │ │ ├── AdoNet │ │ │ ├── AdoNetConnectionFactory.cs │ │ │ ├── AdoNetDbContext.cs │ │ │ ├── AdoNetUnitOfWork.cs │ │ │ └── GenericRepository.cs │ │ ├── Bootstrapper.cs │ │ ├── Db.cs │ │ ├── Exceptions │ │ │ └── DalException.cs │ │ ├── Inspector.DAL.csproj │ │ ├── Interfaces │ │ │ ├── IConnectionFactory.cs │ │ │ ├── IDbContext.cs │ │ │ ├── IRepository.cs │ │ │ └── IUnitOfWork.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.Domain │ │ ├── Inspector.Domain.csproj │ │ ├── Interfaces │ │ │ ├── ICatalogManager.cs │ │ │ ├── IFinancialManager.cs │ │ │ └── IReportManager.cs │ │ ├── Ioc │ │ │ ├── IoC.cs │ │ │ └── IoCException.cs │ │ ├── Misc │ │ │ ├── Filter.cs │ │ │ └── TableAttribute.cs │ │ ├── Models │ │ │ ├── Area.cs │ │ │ ├── FinIndex.cs │ │ │ ├── GenericEntity.cs │ │ │ ├── IEntity.cs │ │ │ ├── OrgType.cs │ │ │ └── Organization.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.GUI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Inspector.GUI.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── StringExt.cs │ │ └── packages.config │ │ ├── Inspector.Test │ │ ├── BLL │ │ │ └── CatalogManagerTest.cs │ │ ├── DAL │ │ │ └── GenericRepositoryTest.cs │ │ ├── Helpers │ │ │ └── DbContextHelper.cs │ │ ├── Inspector.Test.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.sln │ │ └── packages │ │ └── repositories.config ├── 12 │ └── Inspector │ │ ├── Inspector.BLL │ │ ├── Bootstrapper.cs │ │ ├── Inspector.BLL.csproj │ │ ├── Managers │ │ │ ├── CatalogManager.cs │ │ │ ├── FinancialManager.cs │ │ │ └── GenericManager.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.DAL │ │ ├── 00_Data.sql │ │ ├── 00_Initial.sql │ │ ├── AdoNet │ │ │ ├── AdoNetConnectionFactory.cs │ │ │ ├── AdoNetDbContext.cs │ │ │ ├── AdoNetUnitOfWork.cs │ │ │ └── GenericRepository.cs │ │ ├── Bootstrapper.cs │ │ ├── Db.cs │ │ ├── Exceptions │ │ │ └── DalException.cs │ │ ├── Inspector.DAL.csproj │ │ ├── Interfaces │ │ │ ├── IConnectionFactory.cs │ │ │ ├── IDbContext.cs │ │ │ ├── IRepository.cs │ │ │ └── IUnitOfWork.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.Domain │ │ ├── Inspector.Domain.csproj │ │ ├── Interfaces │ │ │ ├── ICatalogManager.cs │ │ │ ├── IFinancialManager.cs │ │ │ └── IReportManager.cs │ │ ├── Ioc │ │ │ ├── IoC.cs │ │ │ └── IoCException.cs │ │ ├── Misc │ │ │ ├── Filter.cs │ │ │ └── TableAttribute.cs │ │ ├── Models │ │ │ ├── Area.cs │ │ │ ├── FinIndex.cs │ │ │ ├── GenericEntity.cs │ │ │ ├── IEntity.cs │ │ │ ├── OrgType.cs │ │ │ └── Organization.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.GUI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Forms │ │ │ ├── DescriptionsForm.xaml │ │ │ ├── DescriptionsForm.xaml.cs │ │ │ ├── InitialDataTypingForm.xaml │ │ │ └── InitialDataTypingForm.xaml.cs │ │ ├── Inspector.GUI.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── StringExt.cs │ │ └── packages.config │ │ ├── Inspector.Test │ │ ├── BLL │ │ │ └── CatalogManagerTest.cs │ │ ├── DAL │ │ │ └── GenericRepositoryTest.cs │ │ ├── Helpers │ │ │ └── DbContextHelper.cs │ │ ├── Inspector.Test.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.sln │ │ └── packages │ │ └── repositories.config ├── 13 │ └── Inspector │ │ ├── Inspector.BLL │ │ ├── Bootstrapper.cs │ │ ├── Inspector.BLL.csproj │ │ ├── Managers │ │ │ ├── CatalogManager.cs │ │ │ ├── FinancialManager.cs │ │ │ └── GenericManager.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.DAL │ │ ├── 00_Data.sql │ │ ├── 00_Initial.sql │ │ ├── AdoNet │ │ │ ├── AdoNetConnectionFactory.cs │ │ │ ├── AdoNetDbContext.cs │ │ │ ├── AdoNetUnitOfWork.cs │ │ │ └── GenericRepository.cs │ │ ├── Bootstrapper.cs │ │ ├── Db.cs │ │ ├── Exceptions │ │ │ └── DalException.cs │ │ ├── Inspector.DAL.csproj │ │ ├── Interfaces │ │ │ ├── IConnectionFactory.cs │ │ │ ├── IDbContext.cs │ │ │ ├── IRepository.cs │ │ │ └── IUnitOfWork.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.Domain │ │ ├── Inspector.Domain.csproj │ │ ├── Interfaces │ │ │ ├── ICatalogManager.cs │ │ │ ├── IFinancialManager.cs │ │ │ └── IReportManager.cs │ │ ├── Ioc │ │ │ ├── IoC.cs │ │ │ ├── IoCException.cs │ │ │ └── IoCMode.cs │ │ ├── Misc │ │ │ ├── Filter.cs │ │ │ └── TableAttribute.cs │ │ ├── Models │ │ │ ├── Area.cs │ │ │ ├── FinIndex.cs │ │ │ ├── GenericEntity.cs │ │ │ ├── IEntity.cs │ │ │ ├── OrgType.cs │ │ │ └── Organization.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.GUI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Forms │ │ │ ├── DescriptionsForm.xaml │ │ │ ├── DescriptionsForm.xaml.cs │ │ │ ├── IFormHost.cs │ │ │ ├── InitialDataTypingForm.xaml │ │ │ └── InitialDataTypingForm.xaml.cs │ │ ├── Inspector.GUI.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── StringExt.cs │ │ ├── StylesDictionary.xaml │ │ └── packages.config │ │ ├── Inspector.Test │ │ ├── BLL │ │ │ └── CatalogManagerTest.cs │ │ ├── DAL │ │ │ └── GenericRepositoryTest.cs │ │ ├── Helpers │ │ │ └── DbContextHelper.cs │ │ ├── Inspector.Test.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.sln │ │ └── packages │ │ └── repositories.config ├── 01_WinForms │ ├── 01_WinForms.sln │ └── 01_WinForms │ │ ├── 01_WinForms.csproj │ │ ├── App.config │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── 02_Win32 │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Win32.cs │ ├── Win32.csproj │ ├── Win32.sln │ ├── Win32.v12.suo │ ├── Win32 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Win32.cs │ │ └── Win32.csproj │ ├── WinForms │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── WinForms.csproj │ └── Wpf │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── Wpf.csproj ├── 03 │ └── Inspector │ │ ├── Inspector.BLL │ │ ├── Inspector.BLL.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.DAL │ │ ├── Inspector.DAL.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.Domain │ │ ├── Inspector.Domain.csproj │ │ ├── Interfaces │ │ │ └── IReportManager.cs │ │ ├── Misc │ │ │ └── Filter.cs │ │ ├── Models │ │ │ ├── Area.cs │ │ │ ├── FinIndex.cs │ │ │ ├── OrgType.cs │ │ │ └── Organization.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.GUI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Inspector.GUI.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── Inspector.sln ├── 04 │ └── Inspector │ │ ├── Inspector.BLL │ │ ├── Bootstrapper.cs │ │ ├── Inspector.BLL.csproj │ │ ├── Managers │ │ │ └── CatalogManager.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.DAL │ │ ├── Inspector.DAL.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.Domain │ │ ├── Inspector.Domain.csproj │ │ ├── Interfaces │ │ │ ├── ICatalogManager.cs │ │ │ └── IReportManager.cs │ │ ├── Ioc │ │ │ ├── IoC.cs │ │ │ └── IoCException.cs │ │ ├── Misc │ │ │ └── Filter.cs │ │ ├── Models │ │ │ ├── Area.cs │ │ │ ├── FinIndex.cs │ │ │ ├── OrgType.cs │ │ │ └── Organization.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.GUI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CatalogManager.cs │ │ ├── Inspector.GUI.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Inspector.Test │ │ ├── BLL │ │ │ └── CatalogManagerTest.cs │ │ ├── Inspector.Test.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Inspector.sln ├── 05 │ └── Inspector │ │ ├── Inspector.BLL │ │ ├── Bootstrapper.cs │ │ ├── Inspector.BLL.csproj │ │ ├── Managers │ │ │ └── CatalogManager.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.DAL │ │ ├── Inspector.DAL.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.Domain │ │ ├── Inspector.Domain.csproj │ │ ├── Interfaces │ │ │ ├── ICatalogManager.cs │ │ │ └── IReportManager.cs │ │ ├── Ioc │ │ │ ├── IoC.cs │ │ │ └── IoCException.cs │ │ ├── Misc │ │ │ └── Filter.cs │ │ ├── Models │ │ │ ├── Area.cs │ │ │ ├── FinIndex.cs │ │ │ ├── OrgType.cs │ │ │ └── Organization.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.GUI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CatalogManager.cs │ │ ├── Inspector.GUI.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Inspector.Test │ │ ├── BLL │ │ │ └── CatalogManagerTest.cs │ │ ├── Inspector.Test.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Inspector.sln ├── 06 │ └── Inspector │ │ ├── Inspector.BLL │ │ ├── Bootstrapper.cs │ │ ├── Inspector.BLL.csproj │ │ ├── Managers │ │ │ └── CatalogManager.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.DAL │ │ ├── 00_Data.sql │ │ ├── 00_Initial.sql │ │ ├── Db.cs │ │ ├── Inspector.DAL.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.Domain │ │ ├── Inspector.Domain.csproj │ │ ├── Interfaces │ │ │ ├── ICatalogManager.cs │ │ │ └── IReportManager.cs │ │ ├── Ioc │ │ │ ├── IoC.cs │ │ │ └── IoCException.cs │ │ ├── Misc │ │ │ └── Filter.cs │ │ ├── Models │ │ │ ├── Area.cs │ │ │ ├── FinIndex.cs │ │ │ ├── OrgType.cs │ │ │ └── Organization.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.GUI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CatalogManager.cs │ │ ├── Inspector.GUI.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Inspector.Test │ │ ├── BLL │ │ │ └── CatalogManagerTest.cs │ │ ├── Inspector.Test.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.sln │ │ └── packages │ │ └── repositories.config ├── 08 │ └── Inspector │ │ ├── Inspector.BLL │ │ ├── Bootstrapper.cs │ │ ├── Inspector.BLL.csproj │ │ ├── Managers │ │ │ └── CatalogManager.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.DAL │ │ ├── 00_Data.sql │ │ ├── 00_Initial.sql │ │ ├── AdoNet │ │ │ ├── AdoNetConnectionFactory.cs │ │ │ ├── AdoNetDbContext.cs │ │ │ ├── AdoNetUnitOfWork.cs │ │ │ └── GenericRepository.cs │ │ ├── Bootstrapper.cs │ │ ├── Db.cs │ │ ├── Exceptions │ │ │ └── DalException.cs │ │ ├── Inspector.DAL.csproj │ │ ├── Interfaces │ │ │ ├── IConnectionFactory.cs │ │ │ ├── IDbContext.cs │ │ │ ├── IRepository.cs │ │ │ └── IUnitOfWork.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.Domain │ │ ├── Inspector.Domain.csproj │ │ ├── Interfaces │ │ │ ├── ICatalogManager.cs │ │ │ └── IReportManager.cs │ │ ├── Ioc │ │ │ ├── IoC.cs │ │ │ └── IoCException.cs │ │ ├── Misc │ │ │ └── Filter.cs │ │ ├── Models │ │ │ ├── Area.cs │ │ │ ├── FinIndex.cs │ │ │ ├── OrgType.cs │ │ │ └── Organization.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.GUI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CatalogManager.cs │ │ ├── Inspector.GUI.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Inspector.Test │ │ ├── BLL │ │ │ └── CatalogManagerTest.cs │ │ ├── Helpers │ │ │ └── DbContextHelper.cs │ │ ├── Inspector.Test.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.sln │ │ └── packages │ │ └── repositories.config ├── 09 │ └── Inspector │ │ ├── Inspector.BLL │ │ ├── Bootstrapper.cs │ │ ├── Inspector.BLL.csproj │ │ ├── Managers │ │ │ └── CatalogManager.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.DAL │ │ ├── 00_Data.sql │ │ ├── 00_Initial.sql │ │ ├── AdoNet │ │ │ ├── AdoNetConnectionFactory.cs │ │ │ ├── AdoNetDbContext.cs │ │ │ ├── AdoNetUnitOfWork.cs │ │ │ └── GenericRepository.cs │ │ ├── Bootstrapper.cs │ │ ├── Db.cs │ │ ├── Exceptions │ │ │ └── DalException.cs │ │ ├── Inspector.DAL.csproj │ │ ├── Interfaces │ │ │ ├── IConnectionFactory.cs │ │ │ ├── IDbContext.cs │ │ │ ├── IRepository.cs │ │ │ └── IUnitOfWork.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.Domain │ │ ├── Inspector.Domain.csproj │ │ ├── Interfaces │ │ │ ├── ICatalogManager.cs │ │ │ └── IReportManager.cs │ │ ├── Ioc │ │ │ ├── IoC.cs │ │ │ └── IoCException.cs │ │ ├── Misc │ │ │ ├── Filter.cs │ │ │ └── TableAttribute.cs │ │ ├── Models │ │ │ ├── Area.cs │ │ │ ├── FinIndex.cs │ │ │ ├── GenericEntity.cs │ │ │ ├── IEntity.cs │ │ │ ├── OrgType.cs │ │ │ └── Organization.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.GUI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CatalogManager.cs │ │ ├── Inspector.GUI.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Inspector.Test │ │ ├── BLL │ │ │ └── CatalogManagerTest.cs │ │ ├── Helpers │ │ │ └── DbContextHelper.cs │ │ ├── Inspector.Test.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.sln │ │ └── packages │ │ └── repositories.config ├── Prepar │ └── Inspector │ │ ├── Inspector.BLL │ │ ├── Bootstrapper.cs │ │ ├── Inspector.BLL.csproj │ │ ├── Managers │ │ │ ├── CatalogManager.cs │ │ │ ├── FinancialManager.cs │ │ │ └── GenericManager.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.DAL │ │ ├── 00_Data.sql │ │ ├── 00_Initial.sql │ │ ├── AdoNet │ │ │ ├── AdoNetConnectionFactory.cs │ │ │ ├── AdoNetDbContext.cs │ │ │ ├── AdoNetUnitOfWork.cs │ │ │ └── GenericRepository.cs │ │ ├── Bootstrapper.cs │ │ ├── Db.cs │ │ ├── Exceptions │ │ │ └── DalException.cs │ │ ├── Inspector.DAL.csproj │ │ ├── Interfaces │ │ │ ├── IConnectionFactory.cs │ │ │ ├── IDbContext.cs │ │ │ ├── IRepository.cs │ │ │ └── IUnitOfWork.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.Domain │ │ ├── Inspector.Domain.csproj │ │ ├── Interfaces │ │ │ ├── ICatalogManager.cs │ │ │ ├── IFinancialManager.cs │ │ │ └── IReportManager.cs │ │ ├── Ioc │ │ │ ├── IoC.cs │ │ │ └── IoCException.cs │ │ ├── Misc │ │ │ ├── Filter.cs │ │ │ └── TableAttribute.cs │ │ ├── Models │ │ │ ├── Area.cs │ │ │ ├── FinIndex.cs │ │ │ ├── GenericEntity.cs │ │ │ ├── IEntity.cs │ │ │ ├── OrgType.cs │ │ │ └── Organization.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Inspector.GUI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Inspector.GUI.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── StringExt.cs │ │ ├── StylesDictionary.xaml │ │ ├── Views │ │ │ ├── DescriptionView.xaml │ │ │ ├── DescriptionView.xaml.cs │ │ │ ├── IViewHost.cs │ │ │ ├── InitialDataTypingView.xaml │ │ │ └── InitialDataTypingView.xaml.cs │ │ └── packages.config │ │ ├── Inspector.Test │ │ ├── BLL │ │ │ └── CatalogManagerTest.cs │ │ ├── DAL │ │ │ └── GenericRepositoryTest.cs │ │ ├── Helpers │ │ │ └── DbContextHelper.cs │ │ ├── Inspector.Test.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ │ ├── Inspector.sln │ │ └── packages │ │ └── repositories.config └── holder ├── Level 3 └── holder ├── Level 4 ├── IIS_ASP_NET.jpg └── lifecycle-of-an-aspnet-mvc-5-application.pdf ├── Level 5 └── holder ├── Links.txt ├── PREPOD21.LOG └── pull.cmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/.gitignore -------------------------------------------------------------------------------- /Level 1/02_GuessNumber/02_GuessNumber.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_GuessNumber/02_GuessNumber.sln -------------------------------------------------------------------------------- /Level 1/02_GuessNumber/02_GuessNumber/02_GuessNumber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_GuessNumber/02_GuessNumber/02_GuessNumber.csproj -------------------------------------------------------------------------------- /Level 1/02_GuessNumber/02_GuessNumber/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_GuessNumber/02_GuessNumber/App.config -------------------------------------------------------------------------------- /Level 1/02_GuessNumber/02_GuessNumber/Class10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_GuessNumber/02_GuessNumber/Class10.cs -------------------------------------------------------------------------------- /Level 1/02_GuessNumber/02_GuessNumber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_GuessNumber/02_GuessNumber/Program.cs -------------------------------------------------------------------------------- /Level 1/02_GuessNumber/02_GuessNumber/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_GuessNumber/02_GuessNumber/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/02_GuessNumber/02_GuessNumber/xxx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_GuessNumber/02_GuessNumber/xxx.cs -------------------------------------------------------------------------------- /Level 1/02_Types/02_Types.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_Types/02_Types.sln -------------------------------------------------------------------------------- /Level 1/02_Types/02_Types/02_Types.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_Types/02_Types/02_Types.csproj -------------------------------------------------------------------------------- /Level 1/02_Types/02_Types/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_Types/02_Types/App.config -------------------------------------------------------------------------------- /Level 1/02_Types/02_Types/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_Types/02_Types/Program.cs -------------------------------------------------------------------------------- /Level 1/02_Types/02_Types/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/02_Types/02_Types/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/04_Converter/04_Converter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Converter/04_Converter.sln -------------------------------------------------------------------------------- /Level 1/04_Converter/04_Converter/04_Converter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Converter/04_Converter/04_Converter.csproj -------------------------------------------------------------------------------- /Level 1/04_Converter/04_Converter/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Converter/04_Converter/Converter.cs -------------------------------------------------------------------------------- /Level 1/04_Converter/04_Converter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Converter/04_Converter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/04_Converter/ConverterTest/ConverterTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Converter/ConverterTest/ConverterTest.csproj -------------------------------------------------------------------------------- /Level 1/04_Converter/ConverterTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Converter/ConverterTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/04_Converter/ConverterTest/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Converter/ConverterTest/UnitTest1.cs -------------------------------------------------------------------------------- /Level 1/04_Exceptions/04_Exceptions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Exceptions/04_Exceptions.sln -------------------------------------------------------------------------------- /Level 1/04_Exceptions/04_Exceptions/04_Exceptions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Exceptions/04_Exceptions/04_Exceptions.csproj -------------------------------------------------------------------------------- /Level 1/04_Exceptions/04_Exceptions/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Exceptions/04_Exceptions/App.config -------------------------------------------------------------------------------- /Level 1/04_Exceptions/04_Exceptions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Exceptions/04_Exceptions/Program.cs -------------------------------------------------------------------------------- /Level 1/04_Exceptions/04_Exceptions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Exceptions/04_Exceptions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/04_Exceptions/ReportLib/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Exceptions/ReportLib/Class1.cs -------------------------------------------------------------------------------- /Level 1/04_Exceptions/ReportLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Exceptions/ReportLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/04_Exceptions/ReportLib/ReportException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Exceptions/ReportLib/ReportException.cs -------------------------------------------------------------------------------- /Level 1/04_Exceptions/ReportLib/ReportLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/04_Exceptions/ReportLib/ReportLib.csproj -------------------------------------------------------------------------------- /Level 1/05_Files/05_Files.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/05_Files/05_Files.sln -------------------------------------------------------------------------------- /Level 1/05_Files/05_Files/05_Files.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/05_Files/05_Files/05_Files.csproj -------------------------------------------------------------------------------- /Level 1/05_Files/05_Files/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/05_Files/05_Files/App.config -------------------------------------------------------------------------------- /Level 1/05_Files/05_Files/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/05_Files/05_Files/Program.cs -------------------------------------------------------------------------------- /Level 1/05_Files/05_Files/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/05_Files/05_Files/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/05_Streams/05_Streams.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/05_Streams/05_Streams.sln -------------------------------------------------------------------------------- /Level 1/05_Streams/05_Streams/05_Streams.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/05_Streams/05_Streams/05_Streams.csproj -------------------------------------------------------------------------------- /Level 1/05_Streams/05_Streams/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/05_Streams/05_Streams/App.config -------------------------------------------------------------------------------- /Level 1/05_Streams/05_Streams/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/05_Streams/05_Streams/Program.cs -------------------------------------------------------------------------------- /Level 1/05_Streams/05_Streams/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/05_Streams/05_Streams/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/06_NewTypes/06_NewTypes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/06_NewTypes/06_NewTypes.sln -------------------------------------------------------------------------------- /Level 1/06_NewTypes/06_NewTypes/06_NewTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/06_NewTypes/06_NewTypes/06_NewTypes.csproj -------------------------------------------------------------------------------- /Level 1/06_NewTypes/06_NewTypes/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/06_NewTypes/06_NewTypes/App.config -------------------------------------------------------------------------------- /Level 1/06_NewTypes/06_NewTypes/Day.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/06_NewTypes/06_NewTypes/Day.cs -------------------------------------------------------------------------------- /Level 1/06_NewTypes/06_NewTypes/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/06_NewTypes/06_NewTypes/Input.cs -------------------------------------------------------------------------------- /Level 1/06_NewTypes/06_NewTypes/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/06_NewTypes/06_NewTypes/Person.cs -------------------------------------------------------------------------------- /Level 1/06_NewTypes/06_NewTypes/PersonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/06_NewTypes/06_NewTypes/PersonInfo.cs -------------------------------------------------------------------------------- /Level 1/06_NewTypes/06_NewTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/06_NewTypes/06_NewTypes/Program.cs -------------------------------------------------------------------------------- /Level 1/06_NewTypes/06_NewTypes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/06_NewTypes/06_NewTypes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/07_Avionika/07_Avionika.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Avionika/07_Avionika.sln -------------------------------------------------------------------------------- /Level 1/07_Avionika/07_Avionika/07_Avionika.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Avionika/07_Avionika/07_Avionika.csproj -------------------------------------------------------------------------------- /Level 1/07_Avionika/07_Avionika/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Avionika/07_Avionika/App.config -------------------------------------------------------------------------------- /Level 1/07_Avionika/07_Avionika/BoardSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Avionika/07_Avionika/BoardSystem.cs -------------------------------------------------------------------------------- /Level 1/07_Avionika/07_Avionika/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Avionika/07_Avionika/Engine.cs -------------------------------------------------------------------------------- /Level 1/07_Avionika/07_Avionika/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Avionika/07_Avionika/Program.cs -------------------------------------------------------------------------------- /Level 1/07_Avionika/07_Avionika/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Avionika/07_Avionika/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/07_Classes/07_Classes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Classes/07_Classes.sln -------------------------------------------------------------------------------- /Level 1/07_Classes/07_Classes/07_Classes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Classes/07_Classes/07_Classes.csproj -------------------------------------------------------------------------------- /Level 1/07_Classes/07_Classes/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Classes/07_Classes/App.config -------------------------------------------------------------------------------- /Level 1/07_Classes/07_Classes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Classes/07_Classes/Program.cs -------------------------------------------------------------------------------- /Level 1/07_Classes/07_Classes/Program2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Classes/07_Classes/Program2.cs -------------------------------------------------------------------------------- /Level 1/07_Classes/07_Classes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Classes/07_Classes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/07_Classes/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Classes/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /Level 1/07_Classes/ClassLibrary1/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Classes/ClassLibrary1/Person.cs -------------------------------------------------------------------------------- /Level 1/07_Classes/ClassLibrary1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/07_Classes/ClassLibrary1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/08/07_Avionika/07_Avionika.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/07_Avionika/07_Avionika.sln -------------------------------------------------------------------------------- /Level 1/08/07_Avionika/07_Avionika/07_Avionika.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/07_Avionika/07_Avionika/07_Avionika.csproj -------------------------------------------------------------------------------- /Level 1/08/07_Avionika/07_Avionika/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/07_Avionika/07_Avionika/App.config -------------------------------------------------------------------------------- /Level 1/08/07_Avionika/07_Avionika/BoardSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/07_Avionika/07_Avionika/BoardSystem.cs -------------------------------------------------------------------------------- /Level 1/08/07_Avionika/07_Avionika/Devices/BaseDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/07_Avionika/07_Avionika/Devices/BaseDevice.cs -------------------------------------------------------------------------------- /Level 1/08/07_Avionika/07_Avionika/Devices/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/07_Avionika/07_Avionika/Devices/Engine.cs -------------------------------------------------------------------------------- /Level 1/08/07_Avionika/07_Avionika/Devices/IBaseDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/07_Avionika/07_Avionika/Devices/IBaseDevice.cs -------------------------------------------------------------------------------- /Level 1/08/07_Avionika/07_Avionika/Devices/Sensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/07_Avionika/07_Avionika/Devices/Sensor.cs -------------------------------------------------------------------------------- /Level 1/08/07_Avionika/07_Avionika/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/07_Avionika/07_Avionika/Program.cs -------------------------------------------------------------------------------- /Level 1/08/07_Avionika/07_Avionika/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/07_Avionika/07_Avionika/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/08/08_DemoInterfaces/08_DemoInterfaces.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/08_DemoInterfaces/08_DemoInterfaces.sln -------------------------------------------------------------------------------- /Level 1/08/08_DemoInterfaces/08_DemoInterfaces/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/08_DemoInterfaces/08_DemoInterfaces/App.config -------------------------------------------------------------------------------- /Level 1/08/08_DemoInterfaces/08_DemoInterfaces/MyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/08_DemoInterfaces/08_DemoInterfaces/MyComparer.cs -------------------------------------------------------------------------------- /Level 1/08/08_DemoInterfaces/08_DemoInterfaces/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/08/08_DemoInterfaces/08_DemoInterfaces/Program.cs -------------------------------------------------------------------------------- /Level 1/09/07_Avionika/07_Avionika.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/07_Avionika/07_Avionika.sln -------------------------------------------------------------------------------- /Level 1/09/07_Avionika/07_Avionika/07_Avionika.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/07_Avionika/07_Avionika/07_Avionika.csproj -------------------------------------------------------------------------------- /Level 1/09/07_Avionika/07_Avionika/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/07_Avionika/07_Avionika/App.config -------------------------------------------------------------------------------- /Level 1/09/07_Avionika/07_Avionika/BoardSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/07_Avionika/07_Avionika/BoardSystem.cs -------------------------------------------------------------------------------- /Level 1/09/07_Avionika/07_Avionika/Devices/BaseDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/07_Avionika/07_Avionika/Devices/BaseDevice.cs -------------------------------------------------------------------------------- /Level 1/09/07_Avionika/07_Avionika/Devices/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/07_Avionika/07_Avionika/Devices/Engine.cs -------------------------------------------------------------------------------- /Level 1/09/07_Avionika/07_Avionika/Devices/IBaseDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/07_Avionika/07_Avionika/Devices/IBaseDevice.cs -------------------------------------------------------------------------------- /Level 1/09/07_Avionika/07_Avionika/Devices/Sensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/07_Avionika/07_Avionika/Devices/Sensor.cs -------------------------------------------------------------------------------- /Level 1/09/07_Avionika/07_Avionika/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/07_Avionika/07_Avionika/Program.cs -------------------------------------------------------------------------------- /Level 1/09/07_Avionika/07_Avionika/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/07_Avionika/07_Avionika/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/09/09_Matrix/09_Matrix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/09_Matrix/09_Matrix.sln -------------------------------------------------------------------------------- /Level 1/09/09_Matrix/09_Matrix/09_Matrix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/09_Matrix/09_Matrix/09_Matrix.csproj -------------------------------------------------------------------------------- /Level 1/09/09_Matrix/09_Matrix/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/09_Matrix/09_Matrix/App.config -------------------------------------------------------------------------------- /Level 1/09/09_Matrix/09_Matrix/Matrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/09_Matrix/09_Matrix/Matrix.cs -------------------------------------------------------------------------------- /Level 1/09/09_Matrix/09_Matrix/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/09_Matrix/09_Matrix/Program.cs -------------------------------------------------------------------------------- /Level 1/09/09_Matrix/09_Matrix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/09/09_Matrix/09_Matrix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika.sln -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika/07_Avionika.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika/07_Avionika.csproj -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika/App.config -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika/BoardSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika/BoardSystem.cs -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika/Devices/BaseDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika/Devices/BaseDevice.cs -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika/Devices/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika/Devices/Engine.cs -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika/Devices/IBaseDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika/Devices/IBaseDevice.cs -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika/Devices/PressureSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika/Devices/PressureSensor.cs -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika/Devices/Sensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika/Devices/Sensor.cs -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika/Devices/VoltageSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika/Devices/VoltageSensor.cs -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika/Program.cs -------------------------------------------------------------------------------- /Level 1/10/07_Avionika/07_Avionika/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/07_Avionika/07_Avionika/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/10/10_Delegates/10_Delegates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/10_Delegates/10_Delegates.sln -------------------------------------------------------------------------------- /Level 1/10/10_Delegates/10_Delegates/10_Delegates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/10_Delegates/10_Delegates/10_Delegates.csproj -------------------------------------------------------------------------------- /Level 1/10/10_Delegates/10_Delegates/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/10_Delegates/10_Delegates/App.config -------------------------------------------------------------------------------- /Level 1/10/10_Delegates/10_Delegates/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/10_Delegates/10_Delegates/Delegates.cs -------------------------------------------------------------------------------- /Level 1/10/10_Delegates/10_Delegates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/10_Delegates/10_Delegates/Program.cs -------------------------------------------------------------------------------- /Level 1/10/10_Delegates/10_Delegates/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/10_Delegates/10_Delegates/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/10/10_Events/10_Events.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/10_Events/10_Events.sln -------------------------------------------------------------------------------- /Level 1/10/10_Events/10_Events/10_Events.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/10_Events/10_Events/10_Events.csproj -------------------------------------------------------------------------------- /Level 1/10/10_Events/10_Events/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/10_Events/10_Events/App.config -------------------------------------------------------------------------------- /Level 1/10/10_Events/10_Events/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/10_Events/10_Events/Program.cs -------------------------------------------------------------------------------- /Level 1/10/10_Events/10_Events/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/10/10_Events/10_Events/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/11/11_Collections/11_Collections.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/11/11_Collections/11_Collections.sln -------------------------------------------------------------------------------- /Level 1/11/11_Collections/11_Collections/11_Collections.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/11/11_Collections/11_Collections/11_Collections.csproj -------------------------------------------------------------------------------- /Level 1/11/11_Collections/11_Collections/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/11/11_Collections/11_Collections/App.config -------------------------------------------------------------------------------- /Level 1/11/11_Collections/11_Collections/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/11/11_Collections/11_Collections/Program.cs -------------------------------------------------------------------------------- /Level 1/11/11_Collections/11_Collections/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/11/11_Collections/11_Collections/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/11/11_CustomCollection/11_CustomCollection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/11/11_CustomCollection/11_CustomCollection.sln -------------------------------------------------------------------------------- /Level 1/11/11_CustomCollection/11_CustomCollection/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/11/11_CustomCollection/11_CustomCollection/App.config -------------------------------------------------------------------------------- /Level 1/11/11_CustomCollection/11_CustomCollection/PrintableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/11/11_CustomCollection/11_CustomCollection/PrintableList.cs -------------------------------------------------------------------------------- /Level 1/11/11_CustomCollection/11_CustomCollection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/11/11_CustomCollection/11_CustomCollection/Program.cs -------------------------------------------------------------------------------- /Level 1/12/12_Enumerables/12_Enumerables.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_Enumerables/12_Enumerables.sln -------------------------------------------------------------------------------- /Level 1/12/12_Enumerables/12_Enumerables/12_Enumerables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_Enumerables/12_Enumerables/12_Enumerables.csproj -------------------------------------------------------------------------------- /Level 1/12/12_Enumerables/12_Enumerables/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_Enumerables/12_Enumerables/App.config -------------------------------------------------------------------------------- /Level 1/12/12_Enumerables/12_Enumerables/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_Enumerables/12_Enumerables/Book.cs -------------------------------------------------------------------------------- /Level 1/12/12_Enumerables/12_Enumerables/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_Enumerables/12_Enumerables/Library.cs -------------------------------------------------------------------------------- /Level 1/12/12_Enumerables/12_Enumerables/Library2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_Enumerables/12_Enumerables/Library2.cs -------------------------------------------------------------------------------- /Level 1/12/12_Enumerables/12_Enumerables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_Enumerables/12_Enumerables/Program.cs -------------------------------------------------------------------------------- /Level 1/12/12_Enumerables/12_Enumerables/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_Enumerables/12_Enumerables/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/12/12_TestCPPMemory/12_TestCPPMemory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_TestCPPMemory/12_TestCPPMemory.sln -------------------------------------------------------------------------------- /Level 1/12/12_TestCPPMemory/12_TestCPPMemory/12_TestCPPMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_TestCPPMemory/12_TestCPPMemory/12_TestCPPMemory.cpp -------------------------------------------------------------------------------- /Level 1/12/12_TestCPPMemory/12_TestCPPMemory/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_TestCPPMemory/12_TestCPPMemory/ReadMe.txt -------------------------------------------------------------------------------- /Level 1/12/12_TestCPPMemory/12_TestCPPMemory/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_TestCPPMemory/12_TestCPPMemory/stdafx.cpp -------------------------------------------------------------------------------- /Level 1/12/12_TestCPPMemory/12_TestCPPMemory/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_TestCPPMemory/12_TestCPPMemory/stdafx.h -------------------------------------------------------------------------------- /Level 1/12/12_TestCPPMemory/12_TestCPPMemory/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_TestCPPMemory/12_TestCPPMemory/targetver.h -------------------------------------------------------------------------------- /Level 1/12/12_TestCSharpMemory/12_TestCSharpMemory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_TestCSharpMemory/12_TestCSharpMemory.sln -------------------------------------------------------------------------------- /Level 1/12/12_TestCSharpMemory/12_TestCSharpMemory/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_TestCSharpMemory/12_TestCSharpMemory/App.config -------------------------------------------------------------------------------- /Level 1/12/12_TestCSharpMemory/12_TestCSharpMemory/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/12/12_TestCSharpMemory/12_TestCSharpMemory/Program.cs -------------------------------------------------------------------------------- /Level 1/13/13_LINQ/13_LINQ.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ/13_LINQ.sln -------------------------------------------------------------------------------- /Level 1/13/13_LINQ/13_LINQ/13_LINQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ/13_LINQ/13_LINQ.csproj -------------------------------------------------------------------------------- /Level 1/13/13_LINQ/13_LINQ/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ/13_LINQ/App.config -------------------------------------------------------------------------------- /Level 1/13/13_LINQ/13_LINQ/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ/13_LINQ/Extensions.cs -------------------------------------------------------------------------------- /Level 1/13/13_LINQ/13_LINQ/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ/13_LINQ/Person.cs -------------------------------------------------------------------------------- /Level 1/13/13_LINQ/13_LINQ/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ/13_LINQ/Program.cs -------------------------------------------------------------------------------- /Level 1/13/13_LINQ/13_LINQ/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ/13_LINQ/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/13/13_LINQ2/13_LINQ2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ2/13_LINQ2.sln -------------------------------------------------------------------------------- /Level 1/13/13_LINQ2/13_LINQ2/13_LINQ2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ2/13_LINQ2/13_LINQ2.csproj -------------------------------------------------------------------------------- /Level 1/13/13_LINQ2/13_LINQ2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ2/13_LINQ2/App.config -------------------------------------------------------------------------------- /Level 1/13/13_LINQ2/13_LINQ2/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ2/13_LINQ2/Person.cs -------------------------------------------------------------------------------- /Level 1/13/13_LINQ2/13_LINQ2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ2/13_LINQ2/Program.cs -------------------------------------------------------------------------------- /Level 1/13/13_LINQ2/13_LINQ2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/13/13_LINQ2/13_LINQ2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/14/14_Features/14_Features.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/14_Features.sln -------------------------------------------------------------------------------- /Level 1/14/14_Features/14_Features/14_Features.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/14_Features/14_Features.csproj -------------------------------------------------------------------------------- /Level 1/14/14_Features/14_Features/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/14_Features/App.config -------------------------------------------------------------------------------- /Level 1/14/14_Features/14_Features/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/14_Features/Class1.cs -------------------------------------------------------------------------------- /Level 1/14/14_Features/14_Features/DbManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/14_Features/DbManager.cs -------------------------------------------------------------------------------- /Level 1/14/14_Features/14_Features/Del.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/14_Features/Del.cs -------------------------------------------------------------------------------- /Level 1/14/14_Features/14_Features/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/14_Features/Program.cs -------------------------------------------------------------------------------- /Level 1/14/14_Features/14_Features/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/14_Features/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/14/14_Features/WindowsFormsApplication1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/WindowsFormsApplication1/App.config -------------------------------------------------------------------------------- /Level 1/14/14_Features/WindowsFormsApplication1/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/WindowsFormsApplication1/Form1.Designer.cs -------------------------------------------------------------------------------- /Level 1/14/14_Features/WindowsFormsApplication1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/WindowsFormsApplication1/Form1.cs -------------------------------------------------------------------------------- /Level 1/14/14_Features/WindowsFormsApplication1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Features/WindowsFormsApplication1/Program.cs -------------------------------------------------------------------------------- /Level 1/14/14_LINQ3/14_LINQ3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_LINQ3/14_LINQ3.sln -------------------------------------------------------------------------------- /Level 1/14/14_LINQ3/14_LINQ3/14_LINQ3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_LINQ3/14_LINQ3/14_LINQ3.csproj -------------------------------------------------------------------------------- /Level 1/14/14_LINQ3/14_LINQ3/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_LINQ3/14_LINQ3/App.config -------------------------------------------------------------------------------- /Level 1/14/14_LINQ3/14_LINQ3/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_LINQ3/14_LINQ3/Company.cs -------------------------------------------------------------------------------- /Level 1/14/14_LINQ3/14_LINQ3/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_LINQ3/14_LINQ3/Person.cs -------------------------------------------------------------------------------- /Level 1/14/14_LINQ3/14_LINQ3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_LINQ3/14_LINQ3/Program.cs -------------------------------------------------------------------------------- /Level 1/14/14_LINQ3/14_LINQ3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_LINQ3/14_LINQ3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/14/14_Variativeness/14_Variativeness.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Variativeness/14_Variativeness.sln -------------------------------------------------------------------------------- /Level 1/14/14_Variativeness/14_Variativeness/14_Variativeness.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Variativeness/14_Variativeness/14_Variativeness.csproj -------------------------------------------------------------------------------- /Level 1/14/14_Variativeness/14_Variativeness/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Variativeness/14_Variativeness/App.config -------------------------------------------------------------------------------- /Level 1/14/14_Variativeness/14_Variativeness/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Variativeness/14_Variativeness/Container.cs -------------------------------------------------------------------------------- /Level 1/14/14_Variativeness/14_Variativeness/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Variativeness/14_Variativeness/IContainer.cs -------------------------------------------------------------------------------- /Level 1/14/14_Variativeness/14_Variativeness/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Variativeness/14_Variativeness/Program.cs -------------------------------------------------------------------------------- /Level 1/14/14_Variativeness/14_Variativeness/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/14/14_Variativeness/14_Variativeness/Shape.cs -------------------------------------------------------------------------------- /Level 1/16/16_Threading/16_Threading.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/16/16_Threading/16_Threading.csproj -------------------------------------------------------------------------------- /Level 1/16/16_Threading/16_Threading.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/16/16_Threading/16_Threading.sln -------------------------------------------------------------------------------- /Level 1/16/16_Threading/16_Threading.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/16/16_Threading/16_Threading.v12.suo -------------------------------------------------------------------------------- /Level 1/16/16_Threading/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/16/16_Threading/App.config -------------------------------------------------------------------------------- /Level 1/16/16_Threading/Atomic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/16/16_Threading/Atomic.cs -------------------------------------------------------------------------------- /Level 1/16/16_Threading/AtomicIncrement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/16/16_Threading/AtomicIncrement.cs -------------------------------------------------------------------------------- /Level 1/16/16_Threading/DeadLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/16/16_Threading/DeadLock.cs -------------------------------------------------------------------------------- /Level 1/16/16_Threading/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/16/16_Threading/Program.cs -------------------------------------------------------------------------------- /Level 1/16/16_Threading/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/16/16_Threading/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 1/16/16_Threading/SharedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/16/16_Threading/SharedData.cs -------------------------------------------------------------------------------- /Level 1/Books/Skeet J. - C# in Depth, 3rd Edition - 2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/Books/Skeet J. - C# in Depth, 3rd Edition - 2013.pdf -------------------------------------------------------------------------------- /Level 1/МатериалНепройденный.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 1/МатериалНепройденный.txt -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms.sln -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms/01_WinForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms/01_WinForms.csproj -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms/App.config -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms/MainForm.Designer.cs -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms/MainForm.cs -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms/MainForm.resx -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms/Program.cs -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Level 2/01_WinForms/01_WinForms/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/01_WinForms/01_WinForms/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/02_Win32/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/App.config -------------------------------------------------------------------------------- /Level 2/02_Win32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Program.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/02_Win32/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32.csproj -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32.sln -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32.v12.suo -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32/App.config -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32/Program.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32/Win32.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Win32/Win32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Win32/Win32.csproj -------------------------------------------------------------------------------- /Level 2/02_Win32/WinForms/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/WinForms/App.config -------------------------------------------------------------------------------- /Level 2/02_Win32/WinForms/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/WinForms/Form1.Designer.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/WinForms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/WinForms/Form1.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/WinForms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/WinForms/Form1.resx -------------------------------------------------------------------------------- /Level 2/02_Win32/WinForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/WinForms/Program.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/WinForms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/WinForms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/WinForms/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/WinForms/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/WinForms/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/WinForms/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/02_Win32/WinForms/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/WinForms/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/WinForms/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/WinForms/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/02_Win32/WinForms/WinForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/WinForms/WinForms.csproj -------------------------------------------------------------------------------- /Level 2/02_Win32/Wpf/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Wpf/App.config -------------------------------------------------------------------------------- /Level 2/02_Win32/Wpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Wpf/App.xaml -------------------------------------------------------------------------------- /Level 2/02_Win32/Wpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Wpf/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Wpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Wpf/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/02_Win32/Wpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Wpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Wpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Wpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Wpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Wpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Wpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Wpf/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/02_Win32/Wpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Wpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Level 2/02_Win32/Wpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Wpf/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/02_Win32/Wpf/Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/02_Win32/Wpf/Wpf.csproj -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.BLL/Inspector.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.BLL/Inspector.BLL.csproj -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.DAL/Inspector.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.DAL/Inspector.DAL.csproj -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.Domain/Inspector.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.Domain/Inspector.Domain.csproj -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.Domain/Interfaces/IReportManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.Domain/Interfaces/IReportManager.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.Domain/Misc/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.Domain/Misc/Filter.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.Domain/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.Domain/Models/Area.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.Domain/Models/FinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.Domain/Models/FinIndex.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.Domain/Models/OrgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.Domain/Models/OrgType.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.Domain/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.Domain/Models/Organization.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/AboutWindow.xaml -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/App.config -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/App.xaml -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/Inspector.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/Inspector.GUI.csproj -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/03/Inspector/Inspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/03/Inspector/Inspector.sln -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.BLL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.BLL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.BLL/Inspector.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.BLL/Inspector.BLL.csproj -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.BLL/Managers/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.BLL/Managers/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.DAL/Inspector.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.DAL/Inspector.DAL.csproj -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Domain/Inspector.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Domain/Inspector.Domain.csproj -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Domain/Interfaces/ICatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Domain/Interfaces/ICatalogManager.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Domain/Interfaces/IReportManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Domain/Interfaces/IReportManager.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Domain/Ioc/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Domain/Ioc/IoC.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Domain/Ioc/IoCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Domain/Ioc/IoCException.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Domain/Misc/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Domain/Misc/Filter.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Domain/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Domain/Models/Area.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Domain/Models/FinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Domain/Models/FinIndex.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Domain/Models/OrgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Domain/Models/OrgType.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Domain/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Domain/Models/Organization.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/AboutWindow.xaml -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/App.config -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/App.xaml -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/Inspector.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/Inspector.GUI.csproj -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Test/Inspector.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Test/Inspector.Test.csproj -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/04/Inspector/Inspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/04/Inspector/Inspector.sln -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.BLL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.BLL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.BLL/Inspector.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.BLL/Inspector.BLL.csproj -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.BLL/Managers/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.BLL/Managers/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.DAL/Inspector.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.DAL/Inspector.DAL.csproj -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Domain/Inspector.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Domain/Inspector.Domain.csproj -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Domain/Interfaces/ICatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Domain/Interfaces/ICatalogManager.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Domain/Interfaces/IReportManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Domain/Interfaces/IReportManager.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Domain/Ioc/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Domain/Ioc/IoC.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Domain/Ioc/IoCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Domain/Ioc/IoCException.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Domain/Misc/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Domain/Misc/Filter.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Domain/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Domain/Models/Area.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Domain/Models/FinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Domain/Models/FinIndex.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Domain/Models/OrgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Domain/Models/OrgType.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Domain/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Domain/Models/Organization.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/AboutWindow.xaml -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/App.config -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/App.xaml -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/Inspector.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/Inspector.GUI.csproj -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Test/Inspector.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Test/Inspector.Test.csproj -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/05/Inspector/Inspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/05/Inspector/Inspector.sln -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.BLL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.BLL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.BLL/Inspector.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.BLL/Inspector.BLL.csproj -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.BLL/Managers/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.BLL/Managers/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.DAL/00_Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.DAL/00_Data.sql -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.DAL/00_Initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.DAL/00_Initial.sql -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.DAL/Db.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.DAL/Db.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.DAL/Inspector.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.DAL/Inspector.DAL.csproj -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.DAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.DAL/packages.config -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Domain/Inspector.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Domain/Inspector.Domain.csproj -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Domain/Interfaces/ICatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Domain/Interfaces/ICatalogManager.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Domain/Interfaces/IReportManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Domain/Interfaces/IReportManager.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Domain/Ioc/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Domain/Ioc/IoC.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Domain/Ioc/IoCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Domain/Ioc/IoCException.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Domain/Misc/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Domain/Misc/Filter.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Domain/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Domain/Models/Area.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Domain/Models/FinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Domain/Models/FinIndex.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Domain/Models/OrgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Domain/Models/OrgType.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Domain/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Domain/Models/Organization.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/AboutWindow.xaml -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/App.config -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/App.xaml -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/Inspector.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/Inspector.GUI.csproj -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Test/Inspector.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Test/Inspector.Test.csproj -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/06/Inspector/Inspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/Inspector.sln -------------------------------------------------------------------------------- /Level 2/06/Inspector/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/06/Inspector/packages/repositories.config -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.BLL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.BLL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.BLL/Inspector.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.BLL/Inspector.BLL.csproj -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.BLL/Managers/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.BLL/Managers/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/00_Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/00_Data.sql -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/00_Initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/00_Initial.sql -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/Db.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/Db.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/Exceptions/DalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/Exceptions/DalException.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/Inspector.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/Inspector.DAL.csproj -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/Interfaces/IDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/Interfaces/IDbContext.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/Interfaces/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/Interfaces/IRepository.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.DAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.DAL/packages.config -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Domain/Inspector.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Domain/Inspector.Domain.csproj -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Domain/Ioc/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Domain/Ioc/IoC.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Domain/Ioc/IoCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Domain/Ioc/IoCException.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Domain/Misc/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Domain/Misc/Filter.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Domain/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Domain/Models/Area.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Domain/Models/FinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Domain/Models/FinIndex.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Domain/Models/OrgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Domain/Models/OrgType.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Domain/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Domain/Models/Organization.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/AboutWindow.xaml -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/App.config -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/App.xaml -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/Inspector.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/Inspector.GUI.csproj -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Test/Helpers/DbContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Test/Helpers/DbContextHelper.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Test/Inspector.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Test/Inspector.Test.csproj -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.Test/packages.config -------------------------------------------------------------------------------- /Level 2/08/Inspector/Inspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/Inspector.sln -------------------------------------------------------------------------------- /Level 2/08/Inspector/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/08/Inspector/packages/repositories.config -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.BLL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.BLL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.BLL/Inspector.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.BLL/Inspector.BLL.csproj -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.BLL/Managers/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.BLL/Managers/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/00_Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/00_Data.sql -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/00_Initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/00_Initial.sql -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/Db.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/Db.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/Exceptions/DalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/Exceptions/DalException.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/Inspector.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/Inspector.DAL.csproj -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/Interfaces/IDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/Interfaces/IDbContext.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/Interfaces/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/Interfaces/IRepository.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.DAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.DAL/packages.config -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Inspector.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Inspector.Domain.csproj -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Ioc/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Ioc/IoC.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Ioc/IoCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Ioc/IoCException.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Misc/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Misc/Filter.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Misc/TableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Misc/TableAttribute.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Models/Area.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Models/FinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Models/FinIndex.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Models/GenericEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Models/GenericEntity.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Models/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Models/IEntity.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Models/OrgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Models/OrgType.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Models/Organization.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/AboutWindow.xaml -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/App.config -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/App.xaml -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/Inspector.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/Inspector.GUI.csproj -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Test/Helpers/DbContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Test/Helpers/DbContextHelper.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Test/Inspector.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Test/Inspector.Test.csproj -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.Test/packages.config -------------------------------------------------------------------------------- /Level 2/09/Inspector/Inspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/Inspector.sln -------------------------------------------------------------------------------- /Level 2/09/Inspector/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/09/Inspector/packages/repositories.config -------------------------------------------------------------------------------- /Level 2/10/DemoExpressionTree/ConsoleApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/DemoExpressionTree/ConsoleApplication1.sln -------------------------------------------------------------------------------- /Level 2/10/DemoExpressionTree/ConsoleApplication1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/DemoExpressionTree/ConsoleApplication1/App.config -------------------------------------------------------------------------------- /Level 2/10/DemoExpressionTree/ConsoleApplication1/Customers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/DemoExpressionTree/ConsoleApplication1/Customers.cs -------------------------------------------------------------------------------- /Level 2/10/DemoExpressionTree/ConsoleApplication1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/DemoExpressionTree/ConsoleApplication1/Program.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.BLL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.BLL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.BLL/Inspector.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.BLL/Inspector.BLL.csproj -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.BLL/Managers/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.BLL/Managers/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/00_Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/00_Data.sql -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/00_Initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/00_Initial.sql -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/Db.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/Db.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/Exceptions/DalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/Exceptions/DalException.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/Inspector.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/Inspector.DAL.csproj -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/Interfaces/IDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/Interfaces/IDbContext.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/Interfaces/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/Interfaces/IRepository.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.DAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.DAL/packages.config -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Inspector.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Inspector.Domain.csproj -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Ioc/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Ioc/IoC.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Ioc/IoCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Ioc/IoCException.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Misc/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Misc/Filter.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Misc/TableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Misc/TableAttribute.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Models/Area.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Models/FinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Models/FinIndex.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Models/GenericEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Models/GenericEntity.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Models/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Models/IEntity.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Models/OrgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Models/OrgType.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Models/Organization.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/AboutWindow.xaml -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/App.config -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/App.xaml -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/Inspector.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/Inspector.GUI.csproj -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Test/DAL/GenericRepositoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Test/DAL/GenericRepositoryTest.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Test/Helpers/DbContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Test/Helpers/DbContextHelper.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Test/Inspector.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Test/Inspector.Test.csproj -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.Test/packages.config -------------------------------------------------------------------------------- /Level 2/10/Inspector/Inspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/Inspector.sln -------------------------------------------------------------------------------- /Level 2/10/Inspector/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/10/Inspector/packages/repositories.config -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.BLL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.BLL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.BLL/Inspector.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.BLL/Inspector.BLL.csproj -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.BLL/Managers/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.BLL/Managers/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.BLL/Managers/FinancialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.BLL/Managers/FinancialManager.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.BLL/Managers/GenericManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.BLL/Managers/GenericManager.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/00_Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/00_Data.sql -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/00_Initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/00_Initial.sql -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/Db.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/Db.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/Exceptions/DalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/Exceptions/DalException.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/Inspector.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/Inspector.DAL.csproj -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/Interfaces/IDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/Interfaces/IDbContext.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/Interfaces/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/Interfaces/IRepository.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.DAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.DAL/packages.config -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Inspector.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Inspector.Domain.csproj -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Ioc/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Ioc/IoC.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Ioc/IoCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Ioc/IoCException.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Misc/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Misc/Filter.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Misc/TableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Misc/TableAttribute.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Models/Area.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Models/FinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Models/FinIndex.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Models/GenericEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Models/GenericEntity.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Models/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Models/IEntity.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Models/OrgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Models/OrgType.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Models/Organization.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/AboutWindow.xaml -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/App.config -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/App.xaml -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/Inspector.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/Inspector.GUI.csproj -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/StringExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/StringExt.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.GUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.GUI/packages.config -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Test/DAL/GenericRepositoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Test/DAL/GenericRepositoryTest.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Test/Helpers/DbContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Test/Helpers/DbContextHelper.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Test/Inspector.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Test/Inspector.Test.csproj -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.Test/packages.config -------------------------------------------------------------------------------- /Level 2/11/Inspector/Inspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/Inspector.sln -------------------------------------------------------------------------------- /Level 2/11/Inspector/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/11/Inspector/packages/repositories.config -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.BLL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.BLL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.BLL/Inspector.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.BLL/Inspector.BLL.csproj -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.BLL/Managers/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.BLL/Managers/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.BLL/Managers/FinancialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.BLL/Managers/FinancialManager.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.BLL/Managers/GenericManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.BLL/Managers/GenericManager.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/00_Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/00_Data.sql -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/00_Initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/00_Initial.sql -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/Db.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/Db.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/Exceptions/DalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/Exceptions/DalException.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/Inspector.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/Inspector.DAL.csproj -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/Interfaces/IDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/Interfaces/IDbContext.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/Interfaces/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/Interfaces/IRepository.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.DAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.DAL/packages.config -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Inspector.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Inspector.Domain.csproj -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Ioc/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Ioc/IoC.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Ioc/IoCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Ioc/IoCException.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Misc/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Misc/Filter.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Misc/TableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Misc/TableAttribute.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Models/Area.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Models/FinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Models/FinIndex.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Models/GenericEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Models/GenericEntity.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Models/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Models/IEntity.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Models/OrgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Models/OrgType.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Models/Organization.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/AboutWindow.xaml -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/App.config -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/App.xaml -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/Forms/DescriptionsForm.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/Forms/DescriptionsForm.xaml -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/Forms/DescriptionsForm.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/Forms/DescriptionsForm.xaml.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/Inspector.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/Inspector.GUI.csproj -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/StringExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/StringExt.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.GUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.GUI/packages.config -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Test/DAL/GenericRepositoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Test/DAL/GenericRepositoryTest.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Test/Helpers/DbContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Test/Helpers/DbContextHelper.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Test/Inspector.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Test/Inspector.Test.csproj -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.Test/packages.config -------------------------------------------------------------------------------- /Level 2/12/Inspector/Inspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/Inspector.sln -------------------------------------------------------------------------------- /Level 2/12/Inspector/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/12/Inspector/packages/repositories.config -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.BLL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.BLL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.BLL/Inspector.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.BLL/Inspector.BLL.csproj -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.BLL/Managers/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.BLL/Managers/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.BLL/Managers/FinancialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.BLL/Managers/FinancialManager.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.BLL/Managers/GenericManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.BLL/Managers/GenericManager.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/00_Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/00_Data.sql -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/00_Initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/00_Initial.sql -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/AdoNet/GenericRepository.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/Db.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/Db.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/Exceptions/DalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/Exceptions/DalException.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/Inspector.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/Inspector.DAL.csproj -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/Interfaces/IDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/Interfaces/IDbContext.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/Interfaces/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/Interfaces/IRepository.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.DAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.DAL/packages.config -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Inspector.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Inspector.Domain.csproj -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Ioc/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Ioc/IoC.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Ioc/IoCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Ioc/IoCException.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Ioc/IoCMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Ioc/IoCMode.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Misc/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Misc/Filter.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Misc/TableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Misc/TableAttribute.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Models/Area.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Models/FinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Models/FinIndex.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Models/GenericEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Models/GenericEntity.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Models/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Models/IEntity.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Models/OrgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Models/OrgType.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Models/Organization.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/AboutWindow.xaml -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/App.config -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/App.xaml -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/Forms/DescriptionsForm.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/Forms/DescriptionsForm.xaml -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/Forms/DescriptionsForm.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/Forms/DescriptionsForm.xaml.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/Forms/IFormHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/Forms/IFormHost.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/Inspector.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/Inspector.GUI.csproj -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/StringExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/StringExt.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/StylesDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/StylesDictionary.xaml -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.GUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.GUI/packages.config -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Test/DAL/GenericRepositoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Test/DAL/GenericRepositoryTest.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Test/Helpers/DbContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Test/Helpers/DbContextHelper.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Test/Inspector.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Test/Inspector.Test.csproj -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.Test/packages.config -------------------------------------------------------------------------------- /Level 2/13/Inspector/Inspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/Inspector.sln -------------------------------------------------------------------------------- /Level 2/13/Inspector/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/13/Inspector/packages/repositories.config -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.BLL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.BLL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.BLL/Inspector.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.BLL/Inspector.BLL.csproj -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.BLL/Managers/CatalogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.BLL/Managers/CatalogManager.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.BLL/Managers/GenericManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.BLL/Managers/GenericManager.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/00_Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/00_Data.sql -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/00_Initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/00_Initial.sql -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/AdoNet/AdoNetDbContext.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/AdoNet/AdoNetUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/Bootstrapper.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/Db.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/Db.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/Exceptions/DalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/Exceptions/DalException.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/Inspector.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/Inspector.DAL.csproj -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/Interfaces/IDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/Interfaces/IDbContext.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/Interfaces/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/Interfaces/IRepository.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/Interfaces/IUnitOfWork.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.DAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.DAL/packages.config -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Domain/Inspector.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Domain/Inspector.Domain.csproj -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Domain/Ioc/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Domain/Ioc/IoC.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Domain/Ioc/IoCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Domain/Ioc/IoCException.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Domain/Misc/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Domain/Misc/Filter.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Domain/Misc/TableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Domain/Misc/TableAttribute.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Domain/Models/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Domain/Models/Area.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Domain/Models/FinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Domain/Models/FinIndex.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Domain/Models/GenericEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Domain/Models/GenericEntity.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Domain/Models/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Domain/Models/IEntity.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Domain/Models/OrgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Domain/Models/OrgType.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Domain/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Domain/Models/Organization.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/AboutWindow.xaml -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/App.config -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/App.xaml -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/Inspector.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/Inspector.GUI.csproj -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/StringExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/StringExt.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/StylesDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/StylesDictionary.xaml -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/Views/DescriptionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/Views/DescriptionView.xaml -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/Views/IViewHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/Views/IViewHost.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.GUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.GUI/packages.config -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Test/BLL/CatalogManagerTest.cs -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Test/Inspector.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Test/Inspector.Test.csproj -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.Test/packages.config -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/Inspector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/Inspector.sln -------------------------------------------------------------------------------- /Level 2/Prepar/Inspector/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 2/Prepar/Inspector/packages/repositories.config -------------------------------------------------------------------------------- /Level 2/holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Level 3/holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Level 4/IIS_ASP_NET.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 4/IIS_ASP_NET.jpg -------------------------------------------------------------------------------- /Level 4/lifecycle-of-an-aspnet-mvc-5-application.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Level 4/lifecycle-of-an-aspnet-mvc-5-application.pdf -------------------------------------------------------------------------------- /Level 5/holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/Links.txt -------------------------------------------------------------------------------- /PREPOD21.LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micros-uz/csharp/HEAD/PREPOD21.LOG -------------------------------------------------------------------------------- /pull.cmd: -------------------------------------------------------------------------------- 1 | git pull --------------------------------------------------------------------------------