Compare commits
2 Commits
03af7f0379
...
755ce796a0
Author | SHA1 | Date | |
---|---|---|---|
755ce796a0 | |||
3fb1d0a75a |
@ -5,7 +5,15 @@ VisualStudioVersion = 17.8.34525.116
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WinFormsLibrary1", "WinFormsLibrary1\WinFormsLibrary1.csproj", "{724D4035-21A3-4029-9B19-7ED9C5712EA8}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestForm", "TestForm\TestForm.csproj", "{9D20622F-576C-4F80-B5A9-65F869DB9AEE}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestForm", "TestForm\TestForm.csproj", "{9D20622F-576C-4F80-B5A9-65F869DB9AEE}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnterpriseBusinessLogic", "EnterpriseBusinessLogic\EnterpriseBusinessLogic.csproj", "{986F8D46-E1D8-4692-9487-6B4AC3CB3607}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnterpriseContracts", "EnterpriseContracts\EnterpriseContracts.csproj", "{841BB332-2CB3-4939-92DD-69C9A24F40D7}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnterpriseDataBaseImplement", "EnterpriseDataBaseImplemen\EnterpriseDataBaseImplement.csproj", "{C093A0DD-037C-4DD7-BE8A-4DD1AFA7BF16}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FormView", "FormView\FormView.csproj", "{17934640-9B04-4A8F-85B9-9C99882ACD31}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
@ -21,6 +29,22 @@ Global
|
||||
{9D20622F-576C-4F80-B5A9-65F869DB9AEE}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{9D20622F-576C-4F80-B5A9-65F869DB9AEE}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{9D20622F-576C-4F80-B5A9-65F869DB9AEE}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{986F8D46-E1D8-4692-9487-6B4AC3CB3607}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{986F8D46-E1D8-4692-9487-6B4AC3CB3607}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{986F8D46-E1D8-4692-9487-6B4AC3CB3607}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{986F8D46-E1D8-4692-9487-6B4AC3CB3607}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{841BB332-2CB3-4939-92DD-69C9A24F40D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{841BB332-2CB3-4939-92DD-69C9A24F40D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{841BB332-2CB3-4939-92DD-69C9A24F40D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{841BB332-2CB3-4939-92DD-69C9A24F40D7}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{C093A0DD-037C-4DD7-BE8A-4DD1AFA7BF16}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{C093A0DD-037C-4DD7-BE8A-4DD1AFA7BF16}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{C093A0DD-037C-4DD7-BE8A-4DD1AFA7BF16}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{C093A0DD-037C-4DD7-BE8A-4DD1AFA7BF16}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{17934640-9B04-4A8F-85B9-9C99882ACD31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{17934640-9B04-4A8F-85B9-9C99882ACD31}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{17934640-9B04-4A8F-85B9-9C99882ACD31}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{17934640-9B04-4A8F-85B9-9C99882ACD31}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
@ -0,0 +1,49 @@
|
||||
using EnterpriseContracts.BusinessLogicContracts;
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.StorageContracts;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace EnterpriseBusinessLogic.BusinessLogics
|
||||
{
|
||||
|
||||
public class EmployeeLogic : IEmployeeLogic
|
||||
{
|
||||
private readonly IEmployeeStorage _empStorage;
|
||||
|
||||
public EmployeeLogic(IEmployeeStorage empStorage)
|
||||
{
|
||||
_empStorage = empStorage;
|
||||
}
|
||||
|
||||
public List<EmployeeViewModel> Read(EmployeeBindingModel? model)
|
||||
{
|
||||
if (model == null)
|
||||
return _empStorage.GetFullList();
|
||||
return model.Id.HasValue
|
||||
? new List<EmployeeViewModel> { _empStorage.GetElement(model) }
|
||||
: _empStorage.GetFilteredList(model);
|
||||
}
|
||||
|
||||
public void CreateOrUpdate(EmployeeBindingModel model)
|
||||
{
|
||||
var element = _empStorage.GetElement(new EmployeeBindingModel
|
||||
{
|
||||
Id = model.Id
|
||||
});
|
||||
if (element != null)
|
||||
_empStorage.Update(model);
|
||||
else
|
||||
_empStorage.Insert(model);
|
||||
}
|
||||
|
||||
public void Delete(EmployeeBindingModel model)
|
||||
{
|
||||
var element = _empStorage.GetElement(new EmployeeBindingModel { Id = model.Id });
|
||||
if (element == null)
|
||||
throw new Exception("Id don't exists");
|
||||
_empStorage.Delete(model);
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,49 @@
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.BusinessLogicContracts;
|
||||
using EnterpriseContracts.StorageContracts;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
|
||||
namespace EnterpriseBusinessLogic.BusinessLogics;
|
||||
|
||||
public class SubdivisionLogic : ISubdivisionLogic
|
||||
{
|
||||
private readonly ISubdivisionStorage _subdivisionStorage;
|
||||
|
||||
public SubdivisionLogic(ISubdivisionStorage subdivisionStorage)
|
||||
{
|
||||
_subdivisionStorage = subdivisionStorage;
|
||||
}
|
||||
|
||||
public List<SubdivisionViewModel> Read(SubdivisionBindingModel? model)
|
||||
{
|
||||
if (model == null)
|
||||
return _subdivisionStorage.GetFullList();
|
||||
return model.Id != 0 ?
|
||||
new List<SubdivisionViewModel> { _subdivisionStorage.GetElement(model) } :
|
||||
_subdivisionStorage.GetFilteredList(model);
|
||||
}
|
||||
|
||||
public void CreateOrUpdate(SubdivisionBindingModel model)
|
||||
{
|
||||
var element = _subdivisionStorage.GetElement(new SubdivisionBindingModel
|
||||
{
|
||||
Name = model.Name
|
||||
});
|
||||
|
||||
if (element != null && element.Id != model.Id)
|
||||
throw new Exception("This name is exists!");
|
||||
if (model.Id != 0)
|
||||
_subdivisionStorage.Update(model);
|
||||
else
|
||||
_subdivisionStorage.Insert(model);
|
||||
}
|
||||
|
||||
public bool Delete(SubdivisionBindingModel model)
|
||||
{
|
||||
var element = _subdivisionStorage.GetElement(new SubdivisionBindingModel { Id = model.Id });
|
||||
if (element == null)
|
||||
return false;
|
||||
_subdivisionStorage.Delete(model);
|
||||
return true;
|
||||
}
|
||||
}
|
14
COP_9/EnterpriseBusinessLogic/EnterpriseBusinessLogic.csproj
Normal file
14
COP_9/EnterpriseBusinessLogic/EnterpriseBusinessLogic.csproj
Normal file
@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\EnterpriseContracts\EnterpriseContracts.csproj" />
|
||||
<ProjectReference Include="..\EnterpriseDataBaseImplemen\EnterpriseDataBaseImplement.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
@ -0,0 +1,11 @@
|
||||
namespace EnterpriseContracts.BindingModels;
|
||||
|
||||
public class EmployeeBindingModel
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string Fio { get; set; } = string.Empty;
|
||||
public int Experience { get; set; }
|
||||
public string Subdivision { get; set; } = string.Empty;
|
||||
public string Posts { get; set; } = string.Empty;
|
||||
public (int, int)? ExperienceStep { get; set; }
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
namespace EnterpriseContracts.BindingModels;
|
||||
|
||||
public class SubdivisionBindingModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; } = string.Empty;
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
|
||||
namespace EnterpriseContracts.BusinessLogicContracts;
|
||||
|
||||
public interface IEmployeeLogic
|
||||
{
|
||||
List<EmployeeViewModel> Read(EmployeeBindingModel model);
|
||||
void CreateOrUpdate(EmployeeBindingModel model);
|
||||
void Delete(EmployeeBindingModel model);
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
|
||||
namespace EnterpriseContracts.BusinessLogicContracts;
|
||||
|
||||
public interface ISubdivisionLogic
|
||||
{
|
||||
List<SubdivisionViewModel> Read(SubdivisionBindingModel model);
|
||||
void CreateOrUpdate(SubdivisionBindingModel model);
|
||||
bool Delete(SubdivisionBindingModel model);
|
||||
}
|
9
COP_9/EnterpriseContracts/EnterpriseContracts.csproj
Normal file
9
COP_9/EnterpriseContracts/EnterpriseContracts.csproj
Normal file
@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
@ -0,0 +1,14 @@
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
|
||||
namespace EnterpriseContracts.StorageContracts;
|
||||
|
||||
public interface IEmployeeStorage
|
||||
{
|
||||
List<EmployeeViewModel> GetFullList();
|
||||
List<EmployeeViewModel> GetFilteredList(EmployeeBindingModel model);
|
||||
EmployeeViewModel? GetElement(EmployeeBindingModel model);
|
||||
void Insert(EmployeeBindingModel model);
|
||||
void Update(EmployeeBindingModel model);
|
||||
void Delete(EmployeeBindingModel model);
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
|
||||
namespace EnterpriseContracts.StorageContracts;
|
||||
|
||||
public interface ISubdivisionStorage
|
||||
{
|
||||
List<SubdivisionViewModel> GetFullList();
|
||||
List<SubdivisionViewModel> GetFilteredList(SubdivisionBindingModel model);
|
||||
SubdivisionViewModel? GetElement(SubdivisionBindingModel? model);
|
||||
void Insert(SubdivisionBindingModel model);
|
||||
void Update(SubdivisionBindingModel model);
|
||||
void Delete(SubdivisionBindingModel model);
|
||||
}
|
11
COP_9/EnterpriseContracts/ViewModels/EmployeeViewModel.cs
Normal file
11
COP_9/EnterpriseContracts/ViewModels/EmployeeViewModel.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace EnterpriseContracts.ViewModels;
|
||||
|
||||
public class EmployeeViewModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Fio { get; set; } = string.Empty;
|
||||
public int Experience { get; set; }
|
||||
public string Subdivision { get; set; } = string.Empty;
|
||||
public string Posts { get; set; } = string.Empty;
|
||||
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
namespace EnterpriseContracts.ViewModels;
|
||||
|
||||
public class SubdivisionViewModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; } = string.Empty;
|
||||
}
|
18
COP_9/EnterpriseDataBaseImplemen/EnterpriseDataBase.cs
Normal file
18
COP_9/EnterpriseDataBaseImplemen/EnterpriseDataBase.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using EnterpriseDataBaseImplement.Models;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace EnterpriseDataBaseImplement;
|
||||
|
||||
public class EnterpriseDataBase : DbContext
|
||||
{
|
||||
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
||||
{
|
||||
if (!optionsBuilder.IsConfigured) {
|
||||
optionsBuilder.UseSqlServer(@"Data Source=WIN-45522256GVD\SQLEXPRESS;Initial Catalog=EnterpriseDatabase;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
||||
}
|
||||
base.OnConfiguring(optionsBuilder);
|
||||
}
|
||||
|
||||
public virtual DbSet<Employee> Employees { set; get; }
|
||||
public virtual DbSet<Subdivision> Subdivisions { set; get; }
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.18" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.18" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.18">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.18" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\EnterpriseContracts\EnterpriseContracts.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
@ -0,0 +1,91 @@
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.StorageContracts;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
using EnterpriseDataBaseImplement.Models;
|
||||
|
||||
namespace EnterpriseDataBaseImplement.Implements;
|
||||
|
||||
public class EmployeeStorage : IEmployeeStorage
|
||||
{
|
||||
public List<EmployeeViewModel> GetFullList()
|
||||
{
|
||||
var context = new EnterpriseDataBase();
|
||||
return context.Employees
|
||||
.ToList()
|
||||
.Select(x => x.GetViewModel)
|
||||
.ToList();
|
||||
}
|
||||
|
||||
public List<EmployeeViewModel> GetFilteredList(EmployeeBindingModel model)
|
||||
{
|
||||
var context = new EnterpriseDataBase();
|
||||
if (!model.ExperienceStep.HasValue) return new();
|
||||
return context.Employees
|
||||
.Where(x => model.ExperienceStep.Value.Item1 <= x.Experience &&
|
||||
model.ExperienceStep.Value.Item2 >= x.Experience)
|
||||
.ToList()
|
||||
.Select(x => x.GetViewModel)
|
||||
.ToList();
|
||||
}
|
||||
|
||||
public EmployeeViewModel? GetElement(EmployeeBindingModel model)
|
||||
{
|
||||
if (model == null || !model.Id.HasValue) return null;
|
||||
using var context = new EnterpriseDataBase();
|
||||
var x = context.Employees
|
||||
.ToList()
|
||||
.FirstOrDefault(rec => rec.Id == model.Id);
|
||||
return x?.GetViewModel;
|
||||
}
|
||||
|
||||
public void Insert(EmployeeBindingModel model)
|
||||
{
|
||||
var context = new EnterpriseDataBase();
|
||||
var transaction = context.Database.BeginTransaction();
|
||||
try
|
||||
{
|
||||
var x = Employee.Create(model);
|
||||
context.Employees.Add(x);
|
||||
context.SaveChanges();
|
||||
transaction.Commit();
|
||||
}
|
||||
catch
|
||||
{
|
||||
transaction.Rollback();
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
public void Update(EmployeeBindingModel model)
|
||||
{
|
||||
var context = new EnterpriseDataBase();
|
||||
var transaction = context.Database.BeginTransaction();
|
||||
try
|
||||
{
|
||||
var x = context.Employees.FirstOrDefault(rec => rec.Id == model.Id);
|
||||
if (x == null)
|
||||
throw new Exception("Not found");
|
||||
x.Update(model);
|
||||
context.SaveChanges();
|
||||
transaction.Commit();
|
||||
}
|
||||
catch
|
||||
{
|
||||
transaction.Rollback();
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
public void Delete(EmployeeBindingModel model)
|
||||
{
|
||||
var context = new EnterpriseDataBase();
|
||||
var x = context.Employees.FirstOrDefault(rec => rec.Id == model.Id);
|
||||
if (x != null)
|
||||
{
|
||||
context.Employees.Remove(x);
|
||||
context.SaveChanges();
|
||||
}
|
||||
else
|
||||
throw new Exception("Id isn't exists");
|
||||
}
|
||||
}
|
@ -0,0 +1,89 @@
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.StorageContracts;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
using EnterpriseDataBaseImplement.Models;
|
||||
|
||||
namespace EnterpriseDataBaseImplement.Implements;
|
||||
|
||||
public class SubdivisionStorage : ISubdivisionStorage
|
||||
{
|
||||
public List<SubdivisionViewModel> GetFullList()
|
||||
{
|
||||
var context = new EnterpriseDataBase();
|
||||
return context.Subdivisions
|
||||
.ToList()
|
||||
.Select(x => x.GetViewModel)
|
||||
.ToList();
|
||||
}
|
||||
|
||||
public List<SubdivisionViewModel> GetFilteredList(SubdivisionBindingModel model)
|
||||
{
|
||||
var context = new EnterpriseDataBase();
|
||||
return context.Subdivisions
|
||||
.Where(x => x.Name.Contains(model.Name))
|
||||
.ToList()
|
||||
.Select(x => x.GetViewModel)
|
||||
.ToList();
|
||||
}
|
||||
|
||||
public SubdivisionViewModel? GetElement(SubdivisionBindingModel? model)
|
||||
{
|
||||
if (model == null) return null;
|
||||
using var context = new EnterpriseDataBase();
|
||||
var x = context.Subdivisions
|
||||
.ToList()
|
||||
.FirstOrDefault(rec => rec.Name == model.Name || rec.Id == model.Id);
|
||||
return x?.GetViewModel;
|
||||
}
|
||||
|
||||
public void Insert(SubdivisionBindingModel model)
|
||||
{
|
||||
var context = new EnterpriseDataBase();
|
||||
var transaction = context.Database.BeginTransaction();
|
||||
try
|
||||
{
|
||||
var x = Subdivision.Create(model);
|
||||
context.Subdivisions.Add(x);
|
||||
context.SaveChanges();
|
||||
transaction.Commit();
|
||||
}
|
||||
catch
|
||||
{
|
||||
transaction.Rollback();
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
public void Update(SubdivisionBindingModel model)
|
||||
{
|
||||
var context = new EnterpriseDataBase();
|
||||
var transaction = context.Database.BeginTransaction();
|
||||
try
|
||||
{
|
||||
var x = context.Subdivisions.FirstOrDefault(rec => rec.Id == model.Id);
|
||||
if (x == null)
|
||||
throw new Exception("Not found");
|
||||
x.Update(model);
|
||||
context.SaveChanges();
|
||||
transaction.Commit();
|
||||
}
|
||||
catch
|
||||
{
|
||||
transaction.Rollback();
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
public void Delete(SubdivisionBindingModel model)
|
||||
{
|
||||
var context = new EnterpriseDataBase();
|
||||
var x = context.Subdivisions.FirstOrDefault(rec => rec.Id == model.Id);
|
||||
if (x != null)
|
||||
{
|
||||
context.Subdivisions.Remove(x);
|
||||
context.SaveChanges();
|
||||
}
|
||||
else
|
||||
throw new Exception("Id isn't exists");
|
||||
}
|
||||
}
|
74
COP_9/EnterpriseDataBaseImplemen/Migrations/20241111144747_Initial.Designer.cs
generated
Normal file
74
COP_9/EnterpriseDataBaseImplemen/Migrations/20241111144747_Initial.Designer.cs
generated
Normal file
@ -0,0 +1,74 @@
|
||||
// <auto-generated />
|
||||
using EnterpriseDataBaseImplement;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||
using Microsoft.EntityFrameworkCore.Metadata;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace EnterpriseDataBaseImplement.Migrations
|
||||
{
|
||||
[DbContext(typeof(EnterpriseDataBase))]
|
||||
[Migration("20241111144747_Initial")]
|
||||
partial class Initial
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder
|
||||
.HasAnnotation("ProductVersion", "7.0.18")
|
||||
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
||||
|
||||
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
|
||||
|
||||
modelBuilder.Entity("EnterpriseDataBaseImplement.Models.Employee", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("Experience")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("Fio")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Posts")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Subdivision")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Employees");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("EnterpriseDataBaseImplement.Models.Subdivision", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Name")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Subdivisions");
|
||||
});
|
||||
#pragma warning restore 612, 618
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace EnterpriseDataBaseImplement.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class Initial : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Employees",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
Fio = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Experience = table.Column<int>(type: "int", nullable: false),
|
||||
Posts = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Subdivision = table.Column<string>(type: "nvarchar(max)", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Employees", x => x.Id);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Subdivisions",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
Name = table.Column<string>(type: "nvarchar(max)", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Subdivisions", x => x.Id);
|
||||
});
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropTable(
|
||||
name: "Employees");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Subdivisions");
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,71 @@
|
||||
// <auto-generated />
|
||||
using EnterpriseDataBaseImplement;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||
using Microsoft.EntityFrameworkCore.Metadata;
|
||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace EnterpriseDataBaseImplement.Migrations
|
||||
{
|
||||
[DbContext(typeof(EnterpriseDataBase))]
|
||||
partial class EnterpriseDataBaseModelSnapshot : ModelSnapshot
|
||||
{
|
||||
protected override void BuildModel(ModelBuilder modelBuilder)
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder
|
||||
.HasAnnotation("ProductVersion", "7.0.18")
|
||||
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
||||
|
||||
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
|
||||
|
||||
modelBuilder.Entity("EnterpriseDataBaseImplement.Models.Employee", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("Experience")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("Fio")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Posts")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Subdivision")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Employees");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("EnterpriseDataBaseImplement.Models.Subdivision", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Name")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Subdivisions");
|
||||
});
|
||||
#pragma warning restore 612, 618
|
||||
}
|
||||
}
|
||||
}
|
54
COP_9/EnterpriseDataBaseImplemen/Models/Employee.cs
Normal file
54
COP_9/EnterpriseDataBaseImplemen/Models/Employee.cs
Normal file
@ -0,0 +1,54 @@
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace EnterpriseDataBaseImplement.Models;
|
||||
|
||||
public class Employee
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Fio { get; set; } = string.Empty;
|
||||
public int Experience { get; set; }
|
||||
public string Posts { get; set; } = string.Empty;
|
||||
public string Subdivision { get; set; } = string.Empty;
|
||||
|
||||
public static Employee? Create(EmployeeBindingModel? model)
|
||||
{
|
||||
if (model == null) return null;
|
||||
return new()
|
||||
{
|
||||
Fio = model.Fio,
|
||||
Experience = model.Experience,
|
||||
Posts = model.Posts,
|
||||
Subdivision = model.Subdivision
|
||||
};
|
||||
}
|
||||
|
||||
public static Employee Create(EmployeeViewModel model)
|
||||
{
|
||||
return new Employee
|
||||
{
|
||||
Id = model.Id,
|
||||
Fio = model.Fio,
|
||||
Experience = model.Experience,
|
||||
Posts = model.Posts,
|
||||
Subdivision = model.Subdivision
|
||||
};
|
||||
}
|
||||
|
||||
public void Update(EmployeeBindingModel? model)
|
||||
{
|
||||
if (model == null) return;
|
||||
Posts = model.Posts;
|
||||
Subdivision = model.Subdivision;
|
||||
}
|
||||
|
||||
public EmployeeViewModel GetViewModel => new()
|
||||
{
|
||||
Id = Id,
|
||||
Fio = Fio,
|
||||
Experience = Experience,
|
||||
Subdivision = Subdivision,
|
||||
Posts = Posts,
|
||||
};
|
||||
}
|
42
COP_9/EnterpriseDataBaseImplemen/Models/Subdivision.cs
Normal file
42
COP_9/EnterpriseDataBaseImplemen/Models/Subdivision.cs
Normal file
@ -0,0 +1,42 @@
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
|
||||
namespace EnterpriseDataBaseImplement.Models;
|
||||
|
||||
public class Subdivision
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; } = string.Empty;
|
||||
|
||||
public static Subdivision? Create(SubdivisionBindingModel? model)
|
||||
{
|
||||
if (model == null) return null;
|
||||
return new()
|
||||
{
|
||||
Id = model.Id,
|
||||
Name = model.Name
|
||||
};
|
||||
}
|
||||
|
||||
public static Subdivision? Create(SubdivisionViewModel? model)
|
||||
{
|
||||
if (model == null) return null;
|
||||
return new()
|
||||
{
|
||||
Id = model.Id,
|
||||
Name = model.Name
|
||||
};
|
||||
}
|
||||
|
||||
public void Update(SubdivisionBindingModel? model)
|
||||
{
|
||||
if (model == null) return;
|
||||
if (!string.IsNullOrEmpty(model.Name)) Name = model.Name;
|
||||
}
|
||||
|
||||
public SubdivisionViewModel GetViewModel => new()
|
||||
{
|
||||
Id = Id,
|
||||
Name = Name
|
||||
};
|
||||
}
|
39
COP_9/Form/Directory.Designer.cs
generated
Normal file
39
COP_9/Form/Directory.Designer.cs
generated
Normal file
@ -0,0 +1,39 @@
|
||||
namespace Form
|
||||
{
|
||||
partial class Directory
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(800, 450);
|
||||
this.Text = "Directory";
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
20
COP_9/Form/Directory.cs
Normal file
20
COP_9/Form/Directory.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Form
|
||||
{
|
||||
public partial class Directory : Form
|
||||
{
|
||||
public Directory()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
24
COP_9/Form/FormView.csproj
Normal file
24
COP_9/Form/FormView.csproj
Normal file
@ -0,0 +1,24 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Components" Version="1.0.0" />
|
||||
<PackageReference Include="ComponentsLibraryNet60" Version="1.0.0" />
|
||||
<PackageReference Include="ControlsLibraryNet60" Version="1.0.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="7.0.18" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\EnterpriseBusinessLogic\EnterpriseBusinessLogic.csproj" />
|
||||
<ProjectReference Include="..\EnterpriseContracts\EnterpriseContracts.csproj" />
|
||||
<ProjectReference Include="..\EnterpriseDataBaseImplemen\EnterpriseDataBaseImplemen.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
24
COP_9/Form/Program.cs
Normal file
24
COP_9/Form/Program.cs
Normal file
@ -0,0 +1,24 @@
|
||||
using Form;
|
||||
using System.ComponentModel;
|
||||
using EnterpriseBusinessLogic;
|
||||
using EnterpriseContracts;
|
||||
using EnterpriseDataBaseImplemen;
|
||||
|
||||
namespace Form
|
||||
{
|
||||
internal static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
|
||||
Application.SetHighDpiMode(HighDpiMode.SystemAware);
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(Container.Resolve<Form>());
|
||||
}
|
||||
}
|
||||
}
|
65
COP_9/FormView/Directory.Designer.cs
generated
Normal file
65
COP_9/FormView/Directory.Designer.cs
generated
Normal file
@ -0,0 +1,65 @@
|
||||
namespace FormView
|
||||
{
|
||||
partial class Directory
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.dataGridView = new System.Windows.Forms.DataGridView();
|
||||
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// dataGridView
|
||||
//
|
||||
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.dataGridView.Location = new System.Drawing.Point(0, 0);
|
||||
this.dataGridView.Name = "dataGridView";
|
||||
this.dataGridView.RowTemplate.Height = 25;
|
||||
this.dataGridView.Size = new System.Drawing.Size(414, 261);
|
||||
this.dataGridView.TabIndex = 0;
|
||||
this.dataGridView.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellEndEdit);
|
||||
this.dataGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DataGridView_KeyDown);
|
||||
//
|
||||
// Directory
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(414, 261);
|
||||
this.Controls.Add(this.dataGridView);
|
||||
this.Name = "Directory";
|
||||
this.Text = "Directory";
|
||||
this.Load += new System.EventHandler(this.Directory_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DataGridView dataGridView;
|
||||
}
|
||||
}
|
128
COP_9/FormView/Directory.cs
Normal file
128
COP_9/FormView/Directory.cs
Normal file
@ -0,0 +1,128 @@
|
||||
using System.ComponentModel;
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.BusinessLogicContracts;
|
||||
|
||||
|
||||
namespace FormView
|
||||
{
|
||||
public partial class Directory : Form
|
||||
{
|
||||
private readonly ISubdivisionLogic _logicS;
|
||||
BindingList<SubdivisionBindingModel> list;
|
||||
|
||||
public Directory(ISubdivisionLogic logicS)
|
||||
{
|
||||
InitializeComponent();
|
||||
_logicS = logicS;
|
||||
dataGridView.AllowUserToDeleteRows = true;
|
||||
list = new BindingList<SubdivisionBindingModel>();
|
||||
}
|
||||
|
||||
private void LoadData()
|
||||
{
|
||||
try
|
||||
{
|
||||
var list1 = _logicS.Read(null);
|
||||
list.Clear();
|
||||
foreach (var item in list1)
|
||||
{
|
||||
list.Add(new()
|
||||
{
|
||||
Id = item.Id,
|
||||
Name = item.Name,
|
||||
});
|
||||
}
|
||||
if (list != null)
|
||||
{
|
||||
dataGridView.DataSource = list;
|
||||
dataGridView.Columns[0].Visible = false;
|
||||
dataGridView.Columns[1].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
|
||||
private void Directory_Load(object sender, EventArgs e)
|
||||
{
|
||||
LoadData();
|
||||
}
|
||||
|
||||
private void DataGridView_CellEndEdit(object sender, DataGridViewCellEventArgs e)
|
||||
{
|
||||
var typeName = (string)dataGridView.CurrentRow.Cells[1].Value;
|
||||
if (!string.IsNullOrEmpty(typeName))
|
||||
{
|
||||
if (dataGridView.CurrentRow.Cells[0].Value != null)
|
||||
{
|
||||
_logicS.CreateOrUpdate(new()
|
||||
{
|
||||
Id = Convert.ToInt32(dataGridView.CurrentRow.Cells[0].Value),
|
||||
Name = (string)dataGridView.CurrentRow.Cells[1].EditedFormattedValue
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
_logicS.CreateOrUpdate(new()
|
||||
{
|
||||
Name = (string)dataGridView.CurrentRow.Cells[1].EditedFormattedValue
|
||||
});
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
MessageBox.Show("Empty name", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
LoadData();
|
||||
}
|
||||
|
||||
private void DataGridView_KeyDown(object sender, KeyEventArgs e)
|
||||
{
|
||||
if (e.KeyData == Keys.Insert)
|
||||
{
|
||||
if (dataGridView.Rows.Count == 0)
|
||||
{
|
||||
list.Add(new());
|
||||
dataGridView.DataSource = new List<SubdivisionBindingModel>(list);
|
||||
dataGridView.CurrentCell = dataGridView.Rows[0].Cells[1];
|
||||
return;
|
||||
}
|
||||
if (dataGridView.Rows[^1].Cells[1].Value != null)
|
||||
{
|
||||
list.Add(new());
|
||||
dataGridView.DataSource = new List<SubdivisionBindingModel>(list);
|
||||
dataGridView.CurrentCell = dataGridView.Rows[^1].Cells[1];
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (e.KeyData == Keys.Delete)
|
||||
{
|
||||
if (dataGridView.SelectedRows.Count == 1)
|
||||
{
|
||||
if (MessageBox.Show("Confirm deleting", "Question", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||||
{
|
||||
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
||||
try
|
||||
{
|
||||
if (!_logicS.Delete(new()
|
||||
{
|
||||
Id = id
|
||||
}))
|
||||
{
|
||||
throw new Exception("Error on delete");
|
||||
}
|
||||
dataGridView.Rows.RemoveAt(dataGridView.SelectedRows[0].Index);
|
||||
LoadData();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
120
COP_9/FormView/Directory.resx
Normal file
120
COP_9/FormView/Directory.resx
Normal file
@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
163
COP_9/FormView/EmployerForm.Designer.cs
generated
Normal file
163
COP_9/FormView/EmployerForm.Designer.cs
generated
Normal file
@ -0,0 +1,163 @@
|
||||
namespace FormView
|
||||
{
|
||||
partial class EmployerForm
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
textBoxFio = new TextBox();
|
||||
label1 = new Label();
|
||||
label2 = new Label();
|
||||
customInputRangeNumber = new ControlsLibraryNet60.Input.ControlInputRangeNumber();
|
||||
dropDownList = new Components.DropDownList();
|
||||
label3 = new Label();
|
||||
label4 = new Label();
|
||||
textBoxPosts = new TextBox();
|
||||
buttonCreate = new Button();
|
||||
SuspendLayout();
|
||||
//
|
||||
// textBoxFio
|
||||
//
|
||||
textBoxFio.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||||
textBoxFio.Location = new Point(52, 6);
|
||||
textBoxFio.Name = "textBoxFio";
|
||||
textBoxFio.Size = new Size(335, 23);
|
||||
textBoxFio.TabIndex = 0;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
label1.AutoSize = true;
|
||||
label1.Location = new Point(12, 9);
|
||||
label1.Name = "label1";
|
||||
label1.Size = new Size(34, 15);
|
||||
label1.TabIndex = 1;
|
||||
label1.Text = "ФИО";
|
||||
//
|
||||
// label2
|
||||
//
|
||||
label2.AutoSize = true;
|
||||
label2.Location = new Point(12, 43);
|
||||
label2.Name = "label2";
|
||||
label2.Size = new Size(37, 15);
|
||||
label2.TabIndex = 2;
|
||||
label2.Text = "Опыт";
|
||||
//
|
||||
// customInputRangeNumber
|
||||
//
|
||||
customInputRangeNumber.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||||
customInputRangeNumber.AutoSize = true;
|
||||
customInputRangeNumber.AutoValidate = AutoValidate.Disable;
|
||||
customInputRangeNumber.CausesValidation = false;
|
||||
customInputRangeNumber.Location = new Point(82, 35);
|
||||
customInputRangeNumber.Margin = new Padding(5, 3, 5, 3);
|
||||
customInputRangeNumber.MaxValue = new decimal(new int[] { 30, 0, 0, 0 });
|
||||
customInputRangeNumber.MinValue = new decimal(new int[] { 1, 0, 0, 0 });
|
||||
customInputRangeNumber.Name = "customInputRangeNumber";
|
||||
customInputRangeNumber.Size = new Size(305, 31);
|
||||
customInputRangeNumber.TabIndex = 3;
|
||||
customInputRangeNumber.Value = null;
|
||||
//
|
||||
// dropDownList
|
||||
//
|
||||
dropDownList.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||||
dropDownList.Location = new Point(110, 73);
|
||||
dropDownList.Margin = new Padding(3, 2, 3, 2);
|
||||
dropDownList.Name = "dropDownList";
|
||||
dropDownList.SelectedItem = "";
|
||||
dropDownList.Size = new Size(277, 29);
|
||||
dropDownList.TabIndex = 4;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
label3.AutoSize = true;
|
||||
label3.Location = new Point(12, 78);
|
||||
label3.Name = "label3";
|
||||
label3.Size = new Size(92, 15);
|
||||
label3.TabIndex = 5;
|
||||
label3.Text = "Подразделение";
|
||||
//
|
||||
// label4
|
||||
//
|
||||
label4.AutoSize = true;
|
||||
label4.Location = new Point(12, 109);
|
||||
label4.Name = "label4";
|
||||
label4.Size = new Size(70, 15);
|
||||
label4.TabIndex = 6;
|
||||
label4.Text = "Должности";
|
||||
//
|
||||
// textBoxPosts
|
||||
//
|
||||
textBoxPosts.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||||
textBoxPosts.Location = new Point(88, 107);
|
||||
textBoxPosts.Name = "textBoxPosts";
|
||||
textBoxPosts.Size = new Size(299, 23);
|
||||
textBoxPosts.TabIndex = 7;
|
||||
//
|
||||
// buttonCreate
|
||||
//
|
||||
buttonCreate.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
||||
buttonCreate.Location = new Point(12, 141);
|
||||
buttonCreate.Name = "buttonCreate";
|
||||
buttonCreate.Size = new Size(375, 45);
|
||||
buttonCreate.TabIndex = 8;
|
||||
buttonCreate.Text = "Create";
|
||||
buttonCreate.UseVisualStyleBackColor = true;
|
||||
buttonCreate.Click += ButtonCreate_Click;
|
||||
//
|
||||
// EmployerForm
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(399, 198);
|
||||
Controls.Add(buttonCreate);
|
||||
Controls.Add(textBoxPosts);
|
||||
Controls.Add(label4);
|
||||
Controls.Add(label3);
|
||||
Controls.Add(dropDownList);
|
||||
Controls.Add(customInputRangeNumber);
|
||||
Controls.Add(label2);
|
||||
Controls.Add(label1);
|
||||
Controls.Add(textBoxFio);
|
||||
Name = "EmployerForm";
|
||||
Text = "EmployerForm";
|
||||
Load += EmployerForm_Load;
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private TextBox textBoxFio;
|
||||
private Label label1;
|
||||
private Label label2;
|
||||
private ControlsLibraryNet60.Input.ControlInputRangeNumber customInputRangeNumber;
|
||||
private Components.DropDownList dropDownList;
|
||||
private Label label3;
|
||||
private Label label4;
|
||||
private TextBox textBoxPosts;
|
||||
private Button buttonCreate;
|
||||
}
|
||||
}
|
84
COP_9/FormView/EmployerForm.cs
Normal file
84
COP_9/FormView/EmployerForm.cs
Normal file
@ -0,0 +1,84 @@
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.BusinessLogicContracts;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace FormView
|
||||
{
|
||||
public partial class EmployerForm : Form
|
||||
{
|
||||
private readonly IEmployeeLogic _logic;
|
||||
private readonly ISubdivisionLogic _logicS;
|
||||
public int? Id { get; set; }
|
||||
|
||||
public EmployerForm(IEmployeeLogic logic, ISubdivisionLogic logicS)
|
||||
{
|
||||
InitializeComponent();
|
||||
_logic = logic;
|
||||
_logicS = logicS;
|
||||
customInputRangeNumber.MinValue = 1;
|
||||
customInputRangeNumber.MaxValue = 30;
|
||||
customInputRangeNumber.Value = 1;
|
||||
}
|
||||
|
||||
private void ButtonCreate_Click(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
_logic.CreateOrUpdate(new EmployeeBindingModel
|
||||
{
|
||||
Id = Id,
|
||||
Fio = textBoxFio.Text,
|
||||
Subdivision = dropDownList.SelectedItem,
|
||||
Posts = textBoxPosts.Text,
|
||||
Experience = (int)customInputRangeNumber.Value
|
||||
});
|
||||
MessageBox.Show("Succesfully", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
DialogResult = DialogResult.OK;
|
||||
Close();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
|
||||
private void EmployerForm_Load(object sender, EventArgs e)
|
||||
{
|
||||
List<SubdivisionViewModel>? viewS = _logicS.Read(null);
|
||||
|
||||
if (viewS != null)
|
||||
{
|
||||
// Используем свойство ComboBoxItems для добавления элементов
|
||||
dropDownList.ComboBoxItems.AddRange(viewS.Select(x => x.Name).ToArray());
|
||||
}
|
||||
|
||||
if (Id.HasValue)
|
||||
{
|
||||
try
|
||||
{
|
||||
EmployeeViewModel? view = _logic.Read(new EmployeeBindingModel { Id = Id.Value })?[0];
|
||||
if (view != null)
|
||||
{
|
||||
textBoxFio.Text = view.Fio;
|
||||
dropDownList.SelectedItem = view.Subdivision;
|
||||
customInputRangeNumber.Value = view.Experience;
|
||||
textBoxPosts.Text = view.Posts;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
120
COP_9/FormView/EmployerForm.resx
Normal file
120
COP_9/FormView/EmployerForm.resx
Normal file
@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
158
COP_9/FormView/FormEmployer1.Designer.cs
generated
Normal file
158
COP_9/FormView/FormEmployer1.Designer.cs
generated
Normal file
@ -0,0 +1,158 @@
|
||||
using DocumentFormat.OpenXml.Spreadsheet;
|
||||
using DocumentFormat.OpenXml.Wordprocessing;
|
||||
|
||||
namespace FormView
|
||||
{
|
||||
partial class EmployerForm1
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
labelFio = new Label();
|
||||
textBoxFio = new TextBox();
|
||||
labelExp = new Label();
|
||||
customInputRangeNumber = new ControlsLibraryNet60.Input.ControlInputRangeNumber();
|
||||
labelSubvision = new Label();
|
||||
labelPosts = new Label();
|
||||
sqlDataAdapter1 = new Microsoft.Data.SqlClient.SqlDataAdapter();
|
||||
textBoxPosts = new TextBox();
|
||||
buttonCreate = new Button();
|
||||
dropDownList = new Components.DropDownList();
|
||||
SuspendLayout();
|
||||
//
|
||||
// labelFio
|
||||
//
|
||||
labelFio.AutoSize = true;
|
||||
labelFio.Location = new Point(35, 39);
|
||||
labelFio.Name = "labelFio";
|
||||
labelFio.Size = new Size(31, 20);
|
||||
labelFio.TabIndex = 0;
|
||||
labelFio.Text = "FIO";
|
||||
//
|
||||
// textBoxFio
|
||||
//
|
||||
textBoxFio.Location = new Point(122, 36);
|
||||
textBoxFio.Name = "textBoxFio";
|
||||
textBoxFio.Size = new Size(179, 27);
|
||||
textBoxFio.TabIndex = 1;
|
||||
//
|
||||
// labelExp
|
||||
//
|
||||
labelExp.AutoSize = true;
|
||||
labelExp.Location = new Point(35, 80);
|
||||
labelExp.Name = "labelExp";
|
||||
labelExp.Size = new Size(81, 20);
|
||||
labelExp.TabIndex = 2;
|
||||
labelExp.Text = "Experience";
|
||||
//
|
||||
// customInputRangeNumber
|
||||
//
|
||||
customInputRangeNumber.Location = new Point(122, 80);
|
||||
customInputRangeNumber.MaxValue = new decimal(new int[] { 30, 0, 0, 0 });
|
||||
customInputRangeNumber.MinValue = new decimal(new int[] { 1, 0, 0, 0 });
|
||||
customInputRangeNumber.Name = "customInputRangeNumber";
|
||||
customInputRangeNumber.Size = new Size(161, 45);
|
||||
customInputRangeNumber.TabIndex = 3;
|
||||
//
|
||||
// labelSubvision
|
||||
//
|
||||
labelSubvision.AutoSize = true;
|
||||
labelSubvision.Location = new Point(35, 134);
|
||||
labelSubvision.Name = "labelSubvision";
|
||||
labelSubvision.Size = new Size(72, 20);
|
||||
labelSubvision.TabIndex = 4;
|
||||
labelSubvision.Text = "Subvision";
|
||||
//
|
||||
// labelPosts
|
||||
//
|
||||
labelPosts.AutoSize = true;
|
||||
labelPosts.Location = new Point(35, 220);
|
||||
labelPosts.Name = "labelPosts";
|
||||
labelPosts.Size = new Size(42, 20);
|
||||
labelPosts.TabIndex = 5;
|
||||
labelPosts.Text = "Posts";
|
||||
//
|
||||
// textBoxPosts
|
||||
//
|
||||
textBoxPosts.Location = new Point(122, 217);
|
||||
textBoxPosts.Name = "textBoxPosts";
|
||||
textBoxPosts.Size = new Size(179, 27);
|
||||
textBoxPosts.TabIndex = 6;
|
||||
//
|
||||
// buttonCreate
|
||||
//
|
||||
buttonCreate.Location = new Point(113, 274);
|
||||
buttonCreate.Name = "buttonCreate";
|
||||
buttonCreate.Size = new Size(94, 29);
|
||||
buttonCreate.TabIndex = 8;
|
||||
buttonCreate.Text = "Create";
|
||||
buttonCreate.UseVisualStyleBackColor = true;
|
||||
buttonCreate.Click += ButtonCreate_Click;
|
||||
//
|
||||
// dropDownList
|
||||
//
|
||||
dropDownList.Location = new Point(120, 132);
|
||||
dropDownList.Margin = new Padding(3, 4, 3, 4);
|
||||
dropDownList.Name = "dropDownList";
|
||||
dropDownList.SelectedItem = "";
|
||||
dropDownList.Size = new Size(181, 49);
|
||||
dropDownList.TabIndex = 9;
|
||||
dropDownList.Load += EmployerForm1_Load;
|
||||
//
|
||||
// EmployerForm
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(8F, 20F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(562, 312);
|
||||
Controls.Add(dropDownList);
|
||||
Controls.Add(buttonCreate);
|
||||
Controls.Add(textBoxPosts);
|
||||
Controls.Add(labelPosts);
|
||||
Controls.Add(labelSubvision);
|
||||
Controls.Add(customInputRangeNumber);
|
||||
Controls.Add(labelExp);
|
||||
Controls.Add(textBoxFio);
|
||||
Controls.Add(labelFio);
|
||||
Name = "EmployerForm1";
|
||||
Text = "FormEmployer1";
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Label labelFio;
|
||||
private TextBox textBoxFio;
|
||||
private Label labelExp;
|
||||
private ControlsLibraryNet60.Input.ControlInputRangeNumber customInputRangeNumber;
|
||||
private Label labelSubvision;
|
||||
private Label labelPosts;
|
||||
private Microsoft.Data.SqlClient.SqlDataAdapter sqlDataAdapter1;
|
||||
private TextBox textBoxPosts;
|
||||
private Button buttonCreate;
|
||||
private Components.DropDownList dropDownList;
|
||||
}
|
||||
}
|
84
COP_9/FormView/FormEmployer1.cs
Normal file
84
COP_9/FormView/FormEmployer1.cs
Normal file
@ -0,0 +1,84 @@
|
||||
using Components;
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.BusinessLogicContracts;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace FormView
|
||||
{
|
||||
public partial class EmployerForm1 : Form
|
||||
{
|
||||
private readonly IEmployeeLogic _logic;
|
||||
private readonly ISubdivisionLogic _logicS;
|
||||
public int? Id { get; set; }
|
||||
|
||||
public EmployerForm1(IEmployeeLogic logic, ISubdivisionLogic logicS)
|
||||
{
|
||||
InitializeComponent();
|
||||
_logic = logic;
|
||||
_logicS = logicS;
|
||||
customInputRangeNumber.MinValue = 1;
|
||||
customInputRangeNumber.MaxValue = 30;
|
||||
customInputRangeNumber.Value = 1;
|
||||
}
|
||||
|
||||
private void ButtonCreate_Click(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
_logic.CreateOrUpdate(new EmployeeBindingModel
|
||||
{
|
||||
Id = Id,
|
||||
Fio = textBoxFio.Text,
|
||||
Subdivision = dropDownList.SelectedItem,
|
||||
Posts = textBoxPosts.Text,
|
||||
Experience = (int)customInputRangeNumber.Value
|
||||
});
|
||||
MessageBox.Show("Succesfully", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
DialogResult = DialogResult.OK;
|
||||
Close();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
|
||||
private void EmployerForm1_Load(object sender, EventArgs e)
|
||||
{
|
||||
List<SubdivisionViewModel>? viewS = _logicS.Read(null);
|
||||
|
||||
if (viewS != null)
|
||||
{
|
||||
dropDownList.ComboBoxItems.AddRange(viewS.Select(x => x.Name).ToArray());
|
||||
}
|
||||
|
||||
if (Id.HasValue)
|
||||
{
|
||||
try
|
||||
{
|
||||
EmployeeViewModel? view = _logic.Read(new EmployeeBindingModel { Id = Id.Value })?[0];
|
||||
if (view != null)
|
||||
{
|
||||
textBoxFio.Text = view.Fio;
|
||||
dropDownList.SelectedItem = view.Subdivision;
|
||||
customInputRangeNumber.Value = view.Experience;
|
||||
textBoxPosts.Text = view.Posts;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
120
COP_9/FormView/FormEmployer1.resx
Normal file
120
COP_9/FormView/FormEmployer1.resx
Normal file
@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
174
COP_9/FormView/FormMain.Designer.cs
generated
Normal file
174
COP_9/FormView/FormMain.Designer.cs
generated
Normal file
@ -0,0 +1,174 @@
|
||||
using ComponentsLibraryNet60.DocumentWithTable;
|
||||
|
||||
namespace FormView
|
||||
{
|
||||
partial class FormMain
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
components = new System.ComponentModel.Container();
|
||||
listBoxMany = new Components.ListBoxMany();
|
||||
excelTable = new WinFormsLibrary1.ExcelTable(components);
|
||||
componentDiagramToPdf = new Components.DiagramToPDF(components);
|
||||
wordWithTable = new ComponentDocumentWithTableMultiHeaderWord(components);
|
||||
menuStrip1 = new MenuStrip();
|
||||
actionToolStripMenuItem = new ToolStripMenuItem();
|
||||
createEmployerToolStripMenuItem = new ToolStripMenuItem();
|
||||
editEmployerToolStripMenuItem = new ToolStripMenuItem();
|
||||
deleteEmployerToolStripMenuItem = new ToolStripMenuItem();
|
||||
excelToolStripMenuItem = new ToolStripMenuItem();
|
||||
wordToolStripMenuItem = new ToolStripMenuItem();
|
||||
pdfToolStripMenuItem = new ToolStripMenuItem();
|
||||
directoryToolStripMenuItem = new ToolStripMenuItem();
|
||||
toolStripMenuItem1 = new ToolStripMenuItem();
|
||||
menuStrip1.SuspendLayout();
|
||||
SuspendLayout();
|
||||
//
|
||||
// listBoxMany
|
||||
//
|
||||
listBoxMany.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
||||
listBoxMany.Dock = DockStyle.Fill;
|
||||
listBoxMany.Location = new Point(0, 24);
|
||||
listBoxMany.Margin = new Padding(3, 4, 3, 4);
|
||||
listBoxMany.Name = "listBoxMany";
|
||||
listBoxMany.SelectedIndex = -1;
|
||||
listBoxMany.Size = new Size(895, 453);
|
||||
listBoxMany.TabIndex = 1;
|
||||
//
|
||||
// menuStrip1
|
||||
//
|
||||
menuStrip1.Items.AddRange(new ToolStripItem[] { actionToolStripMenuItem, directoryToolStripMenuItem, toolStripMenuItem1 });
|
||||
menuStrip1.Location = new Point(0, 0);
|
||||
menuStrip1.Name = "menuStrip1";
|
||||
menuStrip1.Size = new Size(895, 24);
|
||||
menuStrip1.TabIndex = 2;
|
||||
menuStrip1.Text = "menuStrip1";
|
||||
//
|
||||
// actionToolStripMenuItem
|
||||
//
|
||||
actionToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { createEmployerToolStripMenuItem, editEmployerToolStripMenuItem, deleteEmployerToolStripMenuItem, excelToolStripMenuItem, wordToolStripMenuItem, pdfToolStripMenuItem });
|
||||
actionToolStripMenuItem.Name = "actionToolStripMenuItem";
|
||||
actionToolStripMenuItem.Size = new Size(70, 20);
|
||||
actionToolStripMenuItem.Text = "Действие";
|
||||
//
|
||||
// createEmployerToolStripMenuItem
|
||||
//
|
||||
createEmployerToolStripMenuItem.Name = "createEmployerToolStripMenuItem";
|
||||
createEmployerToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.A;
|
||||
createEmployerToolStripMenuItem.Size = new Size(274, 22);
|
||||
createEmployerToolStripMenuItem.Text = "Создать работодателя";
|
||||
createEmployerToolStripMenuItem.Click += CreateEmployerToolStripMenuItem_Click;
|
||||
//
|
||||
// editEmployerToolStripMenuItem
|
||||
//
|
||||
editEmployerToolStripMenuItem.Name = "editEmployerToolStripMenuItem";
|
||||
editEmployerToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.U;
|
||||
editEmployerToolStripMenuItem.Size = new Size(274, 22);
|
||||
editEmployerToolStripMenuItem.Text = "Редактировать работодателя";
|
||||
editEmployerToolStripMenuItem.Click += EditEmployerToolStripMenuItem_Click;
|
||||
//
|
||||
// deleteEmployerToolStripMenuItem
|
||||
//
|
||||
deleteEmployerToolStripMenuItem.Name = "deleteEmployerToolStripMenuItem";
|
||||
deleteEmployerToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.D;
|
||||
deleteEmployerToolStripMenuItem.Size = new Size(274, 22);
|
||||
deleteEmployerToolStripMenuItem.Text = "Удалить работодателя";
|
||||
deleteEmployerToolStripMenuItem.Click += DeleteEmployerToolStripMenuItem_Click;
|
||||
//
|
||||
// excelToolStripMenuItem
|
||||
//
|
||||
excelToolStripMenuItem.Name = "excelToolStripMenuItem";
|
||||
excelToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.S;
|
||||
excelToolStripMenuItem.Size = new Size(274, 22);
|
||||
excelToolStripMenuItem.Text = "Excel";
|
||||
excelToolStripMenuItem.Click += ExcelToolStripMenuItem_Click;
|
||||
//
|
||||
// wordToolStripMenuItem
|
||||
//
|
||||
wordToolStripMenuItem.Name = "wordToolStripMenuItem";
|
||||
wordToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.T;
|
||||
wordToolStripMenuItem.Size = new Size(274, 22);
|
||||
wordToolStripMenuItem.Text = "Word";
|
||||
wordToolStripMenuItem.Click += WordToolStripMenuItem_Click;
|
||||
//
|
||||
// pdfToolStripMenuItem
|
||||
//
|
||||
pdfToolStripMenuItem.Name = "pdfToolStripMenuItem";
|
||||
pdfToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.C;
|
||||
pdfToolStripMenuItem.Size = new Size(274, 22);
|
||||
pdfToolStripMenuItem.Text = "Pdf";
|
||||
pdfToolStripMenuItem.Click += PdfToolStripMenuItem_Click;
|
||||
//
|
||||
// directoryToolStripMenuItem
|
||||
//
|
||||
directoryToolStripMenuItem.Checked = true;
|
||||
directoryToolStripMenuItem.CheckState = CheckState.Checked;
|
||||
directoryToolStripMenuItem.Name = "directoryToolStripMenuItem";
|
||||
directoryToolStripMenuItem.Size = new Size(67, 20);
|
||||
directoryToolStripMenuItem.Text = "Directory";
|
||||
directoryToolStripMenuItem.Click += DirectoryToolStripMenuItem_Click;
|
||||
//
|
||||
// toolStripMenuItem1
|
||||
//
|
||||
toolStripMenuItem1.Name = "toolStripMenuItem1";
|
||||
toolStripMenuItem1.Size = new Size(12, 20);
|
||||
//
|
||||
// FormMain
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(895, 477);
|
||||
Controls.Add(listBoxMany);
|
||||
Controls.Add(menuStrip1);
|
||||
MainMenuStrip = menuStrip1;
|
||||
Name = "FormMain";
|
||||
Text = "Приложение";
|
||||
Load += FormMain_Load;
|
||||
menuStrip1.ResumeLayout(false);
|
||||
menuStrip1.PerformLayout();
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
private Components.ListBoxMany listBoxMany;
|
||||
private WinFormsLibrary1.ExcelTable excelTable;
|
||||
private Components.DiagramToPDF componentDiagramToPdf;
|
||||
private ComponentsLibraryNet60.DocumentWithTable.ComponentDocumentWithTableMultiHeaderWord wordWithTable;
|
||||
private MenuStrip menuStrip1;
|
||||
private ToolStripMenuItem actionToolStripMenuItem;
|
||||
private ToolStripMenuItem createEmployerToolStripMenuItem;
|
||||
private ToolStripMenuItem editEmployerToolStripMenuItem;
|
||||
private ToolStripMenuItem deleteEmployerToolStripMenuItem;
|
||||
private ToolStripMenuItem excelToolStripMenuItem;
|
||||
private ToolStripMenuItem wordToolStripMenuItem;
|
||||
private ToolStripMenuItem pdfToolStripMenuItem;
|
||||
private ToolStripMenuItem directoryToolStripMenuItem;
|
||||
private ToolStripMenuItem toolStripMenuItem1;
|
||||
}
|
||||
}
|
513
COP_9/FormView/FormMain.cs
Normal file
513
COP_9/FormView/FormMain.cs
Normal file
@ -0,0 +1,513 @@
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.BusinessLogicContracts;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
using ComponentsLibraryNet60.DocumentWithTable;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using Unity;
|
||||
using ControlsLibraryNet60.Models;
|
||||
using Components;
|
||||
using ComponentsLibraryNet60.Models;
|
||||
|
||||
namespace FormView
|
||||
{
|
||||
public partial class FormMain : Form
|
||||
{
|
||||
private readonly IEmployeeLogic _LogicE;
|
||||
private readonly ISubdivisionLogic _LogicS;
|
||||
public FormMain(IEmployeeLogic logicE, ISubdivisionLogic logicS)
|
||||
{
|
||||
InitializeComponent();
|
||||
_LogicE = logicE;
|
||||
_LogicS = logicS;
|
||||
}
|
||||
|
||||
private void DropComponents()
|
||||
{
|
||||
Controls.Clear();
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void LoadData()
|
||||
{
|
||||
try
|
||||
{
|
||||
DropComponents();
|
||||
|
||||
listBoxMany.SetTemplateString("ID: {Id} ФИО: {Fio} Опыт: {Experience} Подраз-ие: {Subdivision}", "{", "}");
|
||||
|
||||
var list = _LogicE.Read(null) ?? throw new Exception("Error on read");
|
||||
|
||||
for (int i = 0; i < list.Count; i++)
|
||||
{
|
||||
|
||||
for (int j = 0; j < 4; j++)
|
||||
{
|
||||
listBoxMany.FillProperty(list[i], i, GetPropertyName(j));
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
|
||||
private string GetPropertyName(int index)
|
||||
{
|
||||
|
||||
switch (index)
|
||||
{
|
||||
case 0: return "Subdivision";
|
||||
case 1: return "Id";
|
||||
case 2: return "Fio";
|
||||
case 3: return "Experience";
|
||||
default: return string.Empty;
|
||||
}
|
||||
}
|
||||
|
||||
private void FormMain_Load(object sender, EventArgs e)
|
||||
{
|
||||
LoadData();
|
||||
}
|
||||
|
||||
private void CreateEmployerToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var form = Program.Container.Resolve<EmployerForm>();
|
||||
if (form.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
LoadData();
|
||||
}
|
||||
}
|
||||
|
||||
private void EditEmployerToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var form = Program.Container.Resolve<EmployerForm>();
|
||||
form.Id = Convert.ToInt32(listBoxMany.GetObjectFromStr<EmployeeViewModel>().Id);
|
||||
if (form.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
LoadData();
|
||||
}
|
||||
}
|
||||
|
||||
private void DeleteEmployerToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (MessageBox.Show("Delete record", "Question", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||||
{
|
||||
var ent = listBoxMany.GetObjectFromStr<EmployeeViewModel>();
|
||||
|
||||
try
|
||||
{
|
||||
int id = Convert.ToInt32(ent.Id);
|
||||
_LogicE.Delete(new EmployeeBindingModel { Id = id });
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
LoadData();
|
||||
}
|
||||
}
|
||||
|
||||
private void ExcelToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
string fileName = "";
|
||||
using (var dialog = new SaveFileDialog { Filter = "xlsx|*.xlsx" })
|
||||
{
|
||||
if (dialog.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
fileName = dialog.FileName.ToString();
|
||||
MessageBox.Show("Success", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
}
|
||||
var ent = listBoxMany.GetObjectFromStr<EmployeeViewModel>();
|
||||
var Empl = _LogicE.Read(new EmployeeBindingModel { Id = ent.Id })[0];
|
||||
var Data = new string[1, 5];
|
||||
int i = 0;
|
||||
foreach (var post in Empl.Posts.Split(","))
|
||||
{
|
||||
Data[0, i++] = post;
|
||||
}
|
||||
excelTable.CreateDoc(new WinFormsLibrary1.Models.TableConfig
|
||||
{
|
||||
FilePath = fileName,
|
||||
Header = "Example",
|
||||
Data = new List<string[,]> { Data }
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
private void WordToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
string fileName = "";
|
||||
using (var dialog = new SaveFileDialog { Filter = "docx|*.docx" })
|
||||
{
|
||||
if (dialog.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
fileName = dialog.FileName.ToString();
|
||||
MessageBox.Show("Success", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
}
|
||||
var list = _LogicE.Read(null);
|
||||
wordWithTable.CreateDoc(new ComponentDocumentWithTableHeaderDataConfig<EmployeeViewModel>
|
||||
{
|
||||
FilePath = fileName,
|
||||
Header = "Table:",
|
||||
UseUnion = true,
|
||||
ColumnsRowsWidth = new List<(int, int)> { (0, 5), (0, 5), (0, 10), (0, 10) },
|
||||
ColumnUnion = new List<(int StartIndex, int Count)> { (2, 2) },
|
||||
Headers = new List<(int ColumnIndex, int RowIndex, string Header, string PropertyName)>
|
||||
{
|
||||
(0, 0, "Id", "Id"),
|
||||
(1, 0, "Fio", "Fio"),
|
||||
(2, 0, "Work", ""),
|
||||
(2, 1, "Subdivision", "Subdivision"),
|
||||
(3, 1, "Experience", "Experience"),
|
||||
},
|
||||
Data = list
|
||||
});
|
||||
}
|
||||
|
||||
private void PdfToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
string fileName = "";
|
||||
using (var dialog = new SaveFileDialog { Filter = "pdf|*.pdf" })
|
||||
{
|
||||
if (dialog.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
fileName = dialog.FileName.ToString();
|
||||
MessageBox.Show("Success", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
}
|
||||
|
||||
var listEmp = _LogicE.Read(null);
|
||||
var listSubd = _LogicS.Read(null);
|
||||
|
||||
var data = new Dictionary<string, List<double>>();
|
||||
|
||||
foreach (var item in listSubd)
|
||||
{
|
||||
var listSorted = listEmp.Where(x => x.Subdivision.Equals(item.Name));
|
||||
|
||||
(int, int, int, int) x = (
|
||||
listSorted.Where(y => y.Experience >= 1 && y.Experience < 5).Count(),
|
||||
listSorted.Where(y => y.Experience >= 5 && y.Experience < 10).Count(),
|
||||
listSorted.Where(y => y.Experience >= 10 && y.Experience < 20).Count(),
|
||||
listSorted.Where(y => y.Experience >= 20 && y.Experience < 30).Count());
|
||||
|
||||
data.Add(item.Name, new List<double> { x.Item1, x.Item2, x.Item3, x.Item4 });
|
||||
}
|
||||
|
||||
componentDiagramToPdf.CreateLineDiagram(fileName, "Chart", "Chart", data);
|
||||
}
|
||||
|
||||
private void DirectoryToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var form = Program.Container.Resolve<Directory>();
|
||||
form.ShowDialog();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//namespace FormView
|
||||
//{
|
||||
// public partial class FormMain : Form
|
||||
// {
|
||||
// private readonly IEmployeeLogic _LogicE;
|
||||
// private readonly ISubdivisionLogic _LogicS;
|
||||
|
||||
// public FormMain(IEmployeeLogic logicE, ISubdivisionLogic logicS)
|
||||
// {
|
||||
// InitializeComponent();
|
||||
// _LogicE = logicE;
|
||||
// _LogicS = logicS;
|
||||
// }
|
||||
|
||||
// private void DropComponents()
|
||||
// {
|
||||
// Controls.Clear();
|
||||
// InitializeComponent();
|
||||
// }
|
||||
|
||||
// private void LoadData()
|
||||
// {
|
||||
// try
|
||||
// {
|
||||
// DropComponents();
|
||||
|
||||
// // Устанавливаем шаблон строки и символы начала и конца
|
||||
// listBoxMany.SetTemplateString("{Subdivision} {Id} {Fio} {Experience}", "{", "}");
|
||||
|
||||
// var list = _LogicE.Read(null);
|
||||
// if (list == null) throw new Exception("Error on read");
|
||||
|
||||
// for (int i = 0; i < list.Count; i++)
|
||||
// {
|
||||
// // Добавляем элементы в ListBoxMany
|
||||
// listBoxMany.FillProperty(list[i], i, "Subdivision");
|
||||
// listBoxMany.FillProperty(list[i], i, "Id");
|
||||
// listBoxMany.FillProperty(list[i], i, "Fio");
|
||||
// listBoxMany.FillProperty(list[i], i, "Experience");
|
||||
// }
|
||||
// }
|
||||
// catch (Exception ex)
|
||||
// {
|
||||
// MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
// }
|
||||
// }
|
||||
|
||||
// private void FormMain_Load(object sender, EventArgs e)
|
||||
// {
|
||||
// LoadData();
|
||||
// }
|
||||
|
||||
// private void CreateEmployerToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
// {
|
||||
// var form = Program.Container.Resolve<EmployerForm>();
|
||||
// if (form.ShowDialog() == DialogResult.OK)
|
||||
// {
|
||||
// LoadData();
|
||||
// }
|
||||
// }
|
||||
|
||||
// private void EditEmployerToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
// {
|
||||
// var selectedEmployee = listBoxMany.GetObjectFromStr<EmployeeViewModel>();
|
||||
// if (selectedEmployee == null)
|
||||
// {
|
||||
// MessageBox.Show("Please select an employee from the list.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
// return;
|
||||
// }
|
||||
// var form = Program.Container.Resolve<EmployerForm>();
|
||||
// form.Id = Convert.ToInt32(listBoxMany.GetObjectFromStr<EmployeeViewModel>().Id);
|
||||
// if (form.ShowDialog() == DialogResult.OK)
|
||||
// {
|
||||
// LoadData();
|
||||
// }
|
||||
// }
|
||||
|
||||
// private void DeleteEmployerToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
// {
|
||||
// if (MessageBox.Show("Delete record", "Question", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||||
// {
|
||||
// var ent = listBoxMany.GetObjectFromStr<EmployeeViewModel>();
|
||||
|
||||
// try
|
||||
// {
|
||||
// int id = Convert.ToInt32(ent.Id);
|
||||
// _LogicE.Delete(new EmployeeBindingModel { Id = id });
|
||||
// }
|
||||
// catch (Exception ex)
|
||||
// {
|
||||
// MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
// }
|
||||
// LoadData();
|
||||
// }
|
||||
// }
|
||||
|
||||
// private void ExcelToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
// {
|
||||
// //string fileName = "";
|
||||
// //using (var dialog = new SaveFileDialog { Filter = "xlsx|*.xlsx" })
|
||||
// //{
|
||||
// // if (dialog.ShowDialog() == DialogResult.OK)
|
||||
// // {
|
||||
// // fileName = dialog.FileName.ToString();
|
||||
// // MessageBox.Show("Success", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
// // }
|
||||
// //}
|
||||
// //var ent = listBoxMany.GetObjectFromStr<EmployeeViewModel>();
|
||||
// //var Empl = _LogicE.Read(new EmployeeBindingModel { Id = ent.Id })[0];
|
||||
// //var Data = new string[1, 5];
|
||||
// //int i = 0;
|
||||
// //foreach (var post in Empl.Posts.Split(","))
|
||||
// //{
|
||||
// // Data[0, i++] = post;
|
||||
// //}
|
||||
|
||||
// //excelTable.CreateDoc(new WinFormsLibrary1.Models.TableConfig
|
||||
// //{
|
||||
// // FilePath = fileName,
|
||||
// // Header = "Example",
|
||||
// // Data = new List<string[,]> { Data }
|
||||
// //});
|
||||
// if (_LogicE == null)
|
||||
// {
|
||||
// MessageBox.Show("Logic not initialized.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
// return;
|
||||
// }
|
||||
|
||||
// if (excelTable == null)
|
||||
// {
|
||||
// MessageBox.Show("Excel object not initialized.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
// return;
|
||||
// }
|
||||
|
||||
// string fileName = "";
|
||||
// using (var dialog = new SaveFileDialog { Filter = "xlsx|*.xlsx" })
|
||||
// {
|
||||
// if (dialog.ShowDialog() == DialogResult.OK)
|
||||
// {
|
||||
// fileName = dialog.FileName;
|
||||
// MessageBox.Show("Success", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
// }
|
||||
// }
|
||||
|
||||
// var selectedEmployee = listBoxMany.GetObjectFromStr<EmployeeViewModel>();
|
||||
// if (selectedEmployee == null)
|
||||
// {
|
||||
// MessageBox.Show("Select an item from the list.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
// return;
|
||||
// }
|
||||
|
||||
// var emplList = _LogicE.Read(new EmployeeBindingModel { Id = selectedEmployee.Id });
|
||||
// if (emplList == null || emplList.Count == 0)
|
||||
// {
|
||||
// MessageBox.Show("Could not find employee.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
// return;
|
||||
// }
|
||||
|
||||
// var empl = emplList[0];
|
||||
|
||||
// if (string.IsNullOrEmpty(empl.Posts))
|
||||
// {
|
||||
// MessageBox.Show("No positions for the employee.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||||
// return;
|
||||
// }
|
||||
|
||||
// var posts = empl.Posts.Split(",");
|
||||
// var data = new string[1, Math.Min(posts.Length, 5)];
|
||||
// for (int i = 0; i < data.GetLength(1); i++)
|
||||
// {
|
||||
// data[0, i] = posts[i];
|
||||
// }
|
||||
|
||||
// var dataList = new List<string[,]>() { data };
|
||||
|
||||
// if (string.IsNullOrEmpty(fileName))
|
||||
// {
|
||||
// MessageBox.Show("File not selected.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
// return;
|
||||
// }
|
||||
|
||||
// excelTable.CreateDoc(new WinFormsLibrary1.Models.TableConfig
|
||||
// {
|
||||
// FilePath = fileName,
|
||||
// Header = "Example",
|
||||
// Data = dataList
|
||||
// });
|
||||
// }
|
||||
|
||||
// private void WordToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
// {
|
||||
// string fileName = "";
|
||||
// using (var dialog = new SaveFileDialog { Filter = "docx|*.docx" })
|
||||
// {
|
||||
// if (dialog.ShowDialog() == DialogResult.OK)
|
||||
// {
|
||||
// fileName = dialog.FileName.ToString();
|
||||
// MessageBox.Show("Success", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
// }
|
||||
// }
|
||||
// var list = _LogicE.Read(null);
|
||||
// wordWithTable.CreateDoc(new ComponentDocumentWithTableHeaderDataConfig<EmployeeViewModel>
|
||||
// {
|
||||
// FilePath = fileName,
|
||||
// Header = "Table:",
|
||||
// UseUnion = true,
|
||||
// ColumnsRowsWidth = new List<(int, int)> { (0, 5), (0, 5), (0, 10), (0, 10) },
|
||||
// ColumnUnion = new List<(int StartIndex, int Count)> { (2, 2) },
|
||||
// Headers = new List<(int ColumnIndex, int RowIndex, string Header, string PropertyName)>
|
||||
// {
|
||||
// (0, 0, "Id", "Id"),
|
||||
// (1, 0, "Fio", "Fio"),
|
||||
// (2, 0, "Work", ""),
|
||||
// (2, 1, "Subdivision", "Subdivision"),
|
||||
// (3, 1, "Experience", "Experience"),
|
||||
// },
|
||||
// Data = list
|
||||
// });
|
||||
// }
|
||||
|
||||
// /*private void PdfToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
// {
|
||||
// string fileName = "";
|
||||
// using (var dialog = new SaveFileDialog { Filter = "pdf|*.pdf" })
|
||||
// {
|
||||
// if (dialog.ShowDialog() == DialogResult.OK)
|
||||
// {
|
||||
// fileName = dialog.FileName.ToString();
|
||||
// MessageBox.Show("Success", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
// }
|
||||
// }
|
||||
// var listEmp = _LogicE.Read(null);
|
||||
// var listSubd = _LogicS.Read(null);
|
||||
// var Data = new Dictionary<string, List<(string Name, double Value)>>();
|
||||
// foreach (var item in listSubd)
|
||||
// {
|
||||
// var listSorted = listEmp.Where(x => x.Subdivision.Equals(item.Name));
|
||||
// (int, int, int, int) x = (
|
||||
// listSorted.Where(y => y.Experience >= 1 && y.Experience < 5).Count(),
|
||||
// listSorted.Where(y => y.Experience >= 5 && y.Experience < 10).Count(),
|
||||
// listSorted.Where(y => y.Experience >= 10 && y.Experience < 20).Count(),
|
||||
// listSorted.Where(y => y.Experience >= 20 && y.Experience < 30).Count());
|
||||
// Data.Add(item.Name, new() { ("1-5", x.Item1), ("5-10", x.Item2), ("10-20", x.Item3), ("20-30", x.Item4) });
|
||||
// }
|
||||
// DiagramToPDF.CreateLineDiagram(new()
|
||||
// {
|
||||
// FilePath = fileName,
|
||||
// Header = "Chart",
|
||||
// ChartTitle = "Chart",
|
||||
// Data = Data
|
||||
// });
|
||||
// }*/
|
||||
// private void PdfToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
// {
|
||||
// string fileName = "";
|
||||
// using (var dialog = new SaveFileDialog { Filter = "pdf|*.pdf" })
|
||||
// {
|
||||
// if (dialog.ShowDialog() == DialogResult.OK)
|
||||
// {
|
||||
// fileName = dialog.FileName.ToString();
|
||||
// MessageBox.Show("Success", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
// }
|
||||
// }
|
||||
|
||||
// var listEmp = _LogicE.Read(null);
|
||||
// var listSubd = _LogicS.Read(null);
|
||||
|
||||
// // Преобразуем данные в нужный формат
|
||||
// var data = new Dictionary<string, List<double>>();
|
||||
// foreach (var item in listSubd)
|
||||
// {
|
||||
// var listSorted = listEmp.Where(x => x.Subdivision.Equals(item.Name));
|
||||
// var counts = new List<double>
|
||||
// {
|
||||
// listSorted.Where(y => y.Experience >= 1 && y.Experience < 5).Count(),
|
||||
// listSorted.Where(y => y.Experience >= 5 && y.Experience < 10).Count(),
|
||||
// listSorted.Where(y => y.Experience >= 10 && y.Experience < 20).Count(),
|
||||
// listSorted.Where(y => y.Experience >= 20 && y.Experience < 30).Count()
|
||||
// };
|
||||
// data.Add(item.Name, counts);
|
||||
// }
|
||||
|
||||
// // Используем компонент DiagramToPDF для создания диаграммы
|
||||
// componentDiagramToPdf.CreateLineDiagram(fileName, "Chart", "Chart", data);
|
||||
// }
|
||||
|
||||
// private void DirectoryToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
// {
|
||||
// var form = Program.Container.Resolve<Directory>();
|
||||
// form.ShowDialog();
|
||||
// }
|
||||
|
||||
// }
|
||||
//}
|
132
COP_9/FormView/FormMain.resx
Normal file
132
COP_9/FormView/FormMain.resx
Normal file
@ -0,0 +1,132 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="excelTable.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="componentDiagramToPdf.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>125, 17</value>
|
||||
</metadata>
|
||||
<metadata name="wordWithTable.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>316, 17</value>
|
||||
</metadata>
|
||||
<metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>449, 17</value>
|
||||
</metadata>
|
||||
</root>
|
169
COP_9/FormView/FormMain1.Designer.cs
generated
Normal file
169
COP_9/FormView/FormMain1.Designer.cs
generated
Normal file
@ -0,0 +1,169 @@
|
||||
using ComponentsLibraryNet60.DocumentWithTable;
|
||||
using DocumentFormat.OpenXml.Spreadsheet;
|
||||
using DocumentFormat.OpenXml.Wordprocessing;
|
||||
|
||||
namespace FormView
|
||||
{
|
||||
partial class FormMain1
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
components = new System.ComponentModel.Container();
|
||||
menuStrip = new MenuStrip();
|
||||
actionToolStripMenuItem = new ToolStripMenuItem();
|
||||
createEmployerCtrlAToolStripMenuItem = new ToolStripMenuItem();
|
||||
editEmployerCtrlUToolStripMenuItem = new ToolStripMenuItem();
|
||||
deleteEmployerCtrlDToolStripMenuItem = new ToolStripMenuItem();
|
||||
exelCtrlSToolStripMenuItem = new ToolStripMenuItem();
|
||||
wordCtrlTToolStripMenuItem = new ToolStripMenuItem();
|
||||
pdfCtrlCToolStripMenuItem = new ToolStripMenuItem();
|
||||
directoryToolStripMenuItem = new ToolStripMenuItem();
|
||||
excelTable = new WinFormsLibrary1.ExcelTable(components);
|
||||
pdfDiagram = new Components.DiagramToPDF(components);
|
||||
wordWithTable = new ComponentDocumentWithTableMultiHeaderWord(components);
|
||||
customListBox = new Components.ListBoxMany();
|
||||
menuStrip.SuspendLayout();
|
||||
SuspendLayout();
|
||||
//
|
||||
// menuStrip
|
||||
//
|
||||
menuStrip.ImageScalingSize = new Size(20, 20);
|
||||
menuStrip.Items.AddRange(new ToolStripItem[] { actionToolStripMenuItem, directoryToolStripMenuItem });
|
||||
menuStrip.Location = new Point(0, 0);
|
||||
menuStrip.Name = "menuStrip";
|
||||
menuStrip.Padding = new Padding(5, 2, 0, 2);
|
||||
menuStrip.Size = new Size(724, 24);
|
||||
menuStrip.TabIndex = 1;
|
||||
menuStrip.Text = "menuStrip1";
|
||||
//
|
||||
// actionToolStripMenuItem
|
||||
//
|
||||
actionToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { createEmployerCtrlAToolStripMenuItem, editEmployerCtrlUToolStripMenuItem, deleteEmployerCtrlDToolStripMenuItem, exelCtrlSToolStripMenuItem, wordCtrlTToolStripMenuItem, pdfCtrlCToolStripMenuItem });
|
||||
actionToolStripMenuItem.Name = "actionToolStripMenuItem";
|
||||
actionToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.A;
|
||||
actionToolStripMenuItem.Size = new Size(54, 20);
|
||||
actionToolStripMenuItem.Text = "Action";
|
||||
//
|
||||
// createEmployerCtrlAToolStripMenuItem
|
||||
//
|
||||
createEmployerCtrlAToolStripMenuItem.Name = "createEmployerCtrlAToolStripMenuItem";
|
||||
createEmployerCtrlAToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.A;
|
||||
createEmployerCtrlAToolStripMenuItem.Size = new Size(203, 22);
|
||||
createEmployerCtrlAToolStripMenuItem.Text = "Create Employer";
|
||||
createEmployerCtrlAToolStripMenuItem.Click += CreateEmployerToolStripMenuItem_Click;
|
||||
//
|
||||
// editEmployerCtrlUToolStripMenuItem
|
||||
//
|
||||
editEmployerCtrlUToolStripMenuItem.Name = "editEmployerCtrlUToolStripMenuItem";
|
||||
editEmployerCtrlUToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.U;
|
||||
editEmployerCtrlUToolStripMenuItem.Size = new Size(203, 22);
|
||||
editEmployerCtrlUToolStripMenuItem.Text = "Edit Employer";
|
||||
editEmployerCtrlUToolStripMenuItem.Click += EditEmployerToolStripMenuItem_Click_1;
|
||||
//
|
||||
// deleteEmployerCtrlDToolStripMenuItem
|
||||
//
|
||||
deleteEmployerCtrlDToolStripMenuItem.Name = "deleteEmployerCtrlDToolStripMenuItem";
|
||||
deleteEmployerCtrlDToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.D;
|
||||
deleteEmployerCtrlDToolStripMenuItem.Size = new Size(203, 22);
|
||||
deleteEmployerCtrlDToolStripMenuItem.Text = "Delete Employer";
|
||||
deleteEmployerCtrlDToolStripMenuItem.TextDirection = ToolStripTextDirection.Horizontal;
|
||||
deleteEmployerCtrlDToolStripMenuItem.Click += DeleteEmployerToolStripMenuItem_Click_1;
|
||||
//
|
||||
// exelCtrlSToolStripMenuItem
|
||||
//
|
||||
exelCtrlSToolStripMenuItem.Name = "exelCtrlSToolStripMenuItem";
|
||||
exelCtrlSToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.S;
|
||||
exelCtrlSToolStripMenuItem.Size = new Size(203, 22);
|
||||
exelCtrlSToolStripMenuItem.Text = "Exel";
|
||||
exelCtrlSToolStripMenuItem.Click += ExcelToolStripMenuItem_Click;
|
||||
//
|
||||
// wordCtrlTToolStripMenuItem
|
||||
//
|
||||
wordCtrlTToolStripMenuItem.Name = "wordCtrlTToolStripMenuItem";
|
||||
wordCtrlTToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.T;
|
||||
wordCtrlTToolStripMenuItem.Size = new Size(203, 22);
|
||||
wordCtrlTToolStripMenuItem.Text = "Word";
|
||||
wordCtrlTToolStripMenuItem.Click += WordToolStripMenuItem_Click;
|
||||
//
|
||||
// pdfCtrlCToolStripMenuItem
|
||||
//
|
||||
pdfCtrlCToolStripMenuItem.Name = "pdfCtrlCToolStripMenuItem";
|
||||
pdfCtrlCToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.C;
|
||||
pdfCtrlCToolStripMenuItem.Size = new Size(203, 22);
|
||||
pdfCtrlCToolStripMenuItem.Text = "Pdf";
|
||||
pdfCtrlCToolStripMenuItem.Click += PdfToolStripMenuItem_Click;
|
||||
//
|
||||
// directoryToolStripMenuItem
|
||||
//
|
||||
directoryToolStripMenuItem.Name = "directoryToolStripMenuItem";
|
||||
directoryToolStripMenuItem.Size = new Size(67, 20);
|
||||
directoryToolStripMenuItem.Text = "Directory";
|
||||
directoryToolStripMenuItem.Click += DirectoryToolStripMenuItem_Click;
|
||||
//
|
||||
// customListBox
|
||||
//
|
||||
customListBox.Location = new Point(0, 26);
|
||||
customListBox.Margin = new Padding(3, 2, 3, 2);
|
||||
customListBox.Name = "customListBox";
|
||||
customListBox.SelectedIndex = -1;
|
||||
customListBox.Size = new Size(724, 308);
|
||||
customListBox.TabIndex = 2;
|
||||
//
|
||||
// FormMain
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(724, 323);
|
||||
Controls.Add(customListBox);
|
||||
Controls.Add(menuStrip);
|
||||
MainMenuStrip = menuStrip;
|
||||
Margin = new Padding(3, 2, 3, 2);
|
||||
Name = "FormMain";
|
||||
Text = "Zavod";
|
||||
Load += FormMain1_Load;
|
||||
menuStrip.ResumeLayout(false);
|
||||
menuStrip.PerformLayout();
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
}
|
||||
|
||||
#endregion
|
||||
private MenuStrip menuStrip;
|
||||
private ToolStripMenuItem actionToolStripMenuItem;
|
||||
private ToolStripMenuItem createEmployerCtrlAToolStripMenuItem;
|
||||
private ToolStripMenuItem editEmployerCtrlUToolStripMenuItem;
|
||||
private ToolStripMenuItem deleteEmployerCtrlDToolStripMenuItem;
|
||||
private ToolStripMenuItem exelCtrlSToolStripMenuItem;
|
||||
private ToolStripMenuItem wordCtrlTToolStripMenuItem;
|
||||
private ToolStripMenuItem pdfCtrlCToolStripMenuItem;
|
||||
private ToolStripMenuItem directoryToolStripMenuItem;
|
||||
private Components.ListBoxMany customListBox;
|
||||
private WinFormsLibrary1.ExcelTable excelTable;
|
||||
private Components.DiagramToPDF pdfDiagram;
|
||||
private ComponentsLibraryNet60.DocumentWithTable.ComponentDocumentWithTableMultiHeaderWord wordWithTable;
|
||||
}
|
||||
}
|
268
COP_9/FormView/FormMain1.cs
Normal file
268
COP_9/FormView/FormMain1.cs
Normal file
@ -0,0 +1,268 @@
|
||||
using ComponentsLibraryNet60.Models;
|
||||
using EnterpriseContracts.BindingModels;
|
||||
using EnterpriseContracts.BusinessLogicContracts;
|
||||
using EnterpriseContracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using Unity;
|
||||
|
||||
namespace FormView
|
||||
{
|
||||
public partial class FormMain1 : Form
|
||||
{
|
||||
private readonly IEmployeeLogic _LogicE;
|
||||
private readonly ISubdivisionLogic _LogicS;
|
||||
public FormMain1(IEmployeeLogic logicE, ISubdivisionLogic logicS)
|
||||
{
|
||||
InitializeComponent();
|
||||
_LogicE = logicE;
|
||||
_LogicS = logicS;
|
||||
}
|
||||
|
||||
private void DropComponents()
|
||||
{
|
||||
Controls.Clear();
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void LoadData()
|
||||
{
|
||||
try
|
||||
{
|
||||
DropComponents();
|
||||
|
||||
customListBox.SetTemplateString("Индификатор: {Id} Имя: {Fio} Опыт: {Experience} Подразделение: {Subdivision}", "{", "}");
|
||||
|
||||
var list = _LogicE.Read(null) ?? throw new Exception("Error on read");
|
||||
|
||||
for (int i = 0; i < list.Count; i++)
|
||||
{
|
||||
|
||||
for (int j = 0; j < 4; j++)
|
||||
{
|
||||
customListBox.FillProperty(list[i], i, GetPropertyName(j));
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
|
||||
private string GetPropertyName(int index)
|
||||
{
|
||||
|
||||
switch (index)
|
||||
{
|
||||
case 0: return "Subdivision";
|
||||
case 1: return "Id";
|
||||
case 2: return "Fio";
|
||||
case 3: return "Experience";
|
||||
default: return string.Empty;
|
||||
}
|
||||
}
|
||||
|
||||
private void FormMain1_Load(object sender, EventArgs e)
|
||||
{
|
||||
LoadData();
|
||||
}
|
||||
|
||||
private void CreateEmployerToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var form = Program.Container.Resolve<EmployerForm1>();
|
||||
if (form.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
LoadData();
|
||||
}
|
||||
}
|
||||
|
||||
private void EditEmployerToolStripMenuItem_Click_1(object sender, EventArgs e)
|
||||
{
|
||||
var selectedEmployee = customListBox.GetObjectFromStr<EmployeeViewModel>();
|
||||
if (selectedEmployee == null)
|
||||
{
|
||||
MessageBox.Show("Please select an employee from the list.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
var form = Program.Container.Resolve<EmployerForm1>();
|
||||
form.Id = selectedEmployee.Id;
|
||||
|
||||
if (form.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
LoadData();
|
||||
}
|
||||
}
|
||||
|
||||
private void DeleteEmployerToolStripMenuItem_Click_1(object sender, EventArgs e)
|
||||
{
|
||||
var selectedEmployee = customListBox.GetObjectFromStr<EmployeeViewModel>();
|
||||
if (selectedEmployee == null)
|
||||
{
|
||||
MessageBox.Show("Please select an employee from the list.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (MessageBox.Show("Delete record", "Question", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||||
{
|
||||
try
|
||||
{
|
||||
_LogicE.Delete(new EmployeeBindingModel { Id = selectedEmployee.Id });
|
||||
LoadData();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void ExcelToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (_LogicE == null)
|
||||
{
|
||||
MessageBox.Show("Logic not initialized.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (excelTable == null)
|
||||
{
|
||||
MessageBox.Show("Excel object not initialized.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
string fileName = "";
|
||||
using (var dialog = new SaveFileDialog { Filter = "xlsx|*.xlsx" })
|
||||
{
|
||||
if (dialog.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
fileName = dialog.FileName;
|
||||
MessageBox.Show("Success", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
}
|
||||
|
||||
var selectedEmployee = customListBox.GetObjectFromStr<EmployeeViewModel>();
|
||||
if (selectedEmployee == null)
|
||||
{
|
||||
MessageBox.Show("Select an item from the list.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
var emplList = _LogicE.Read(new EmployeeBindingModel { Id = selectedEmployee.Id });
|
||||
if (emplList == null || emplList.Count == 0)
|
||||
{
|
||||
MessageBox.Show("Could not find employee.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
var empl = emplList[0];
|
||||
|
||||
if (string.IsNullOrEmpty(empl.Posts))
|
||||
{
|
||||
MessageBox.Show("No positions for the employee.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
|
||||
var posts = empl.Posts.Split(",");
|
||||
var data = new string[1, Math.Min(posts.Length, 5)];
|
||||
for (int i = 0; i < data.GetLength(1); i++)
|
||||
{
|
||||
data[0, i] = posts[i];
|
||||
}
|
||||
|
||||
var dataList = new List<string[,]>() { data };
|
||||
|
||||
if (string.IsNullOrEmpty(fileName))
|
||||
{
|
||||
MessageBox.Show("File not selected.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
excelTable.CreateDoc(new WinFormsLibrary1.Models.TableConfig
|
||||
{
|
||||
FilePath = fileName,
|
||||
Header = "Example",
|
||||
Data = dataList
|
||||
});
|
||||
}
|
||||
|
||||
private void WordToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
string fileName = "";
|
||||
using (var dialog = new SaveFileDialog { Filter = "docx|*.docx" })
|
||||
{
|
||||
if (dialog.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
fileName = dialog.FileName.ToString();
|
||||
MessageBox.Show("Success", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
}
|
||||
|
||||
var list = _LogicE.Read(null);
|
||||
wordWithTable.CreateDoc(new ComponentDocumentWithTableHeaderDataConfig<EmployeeViewModel>
|
||||
{
|
||||
FilePath = fileName,
|
||||
Header = "Table:",
|
||||
UseUnion = true,
|
||||
ColumnsRowsWidth = new List<(int, int)> { (0, 5), (0, 5), (0, 10), (0, 10) },
|
||||
ColumnUnion = new List<(int StartIndex, int Count)> { (2, 2) },
|
||||
Headers = new List<(int ColumnIndex, int RowIndex, string Header, string PropertyName)>
|
||||
{
|
||||
(0, 0, "Id", "Id"),
|
||||
(1, 0, "Fio", "Fio"),
|
||||
(2, 0, "Work", ""),
|
||||
(2, 1, "Subdivision", "Subdivision"),
|
||||
(3, 1, "Experience", "Experience"),
|
||||
},
|
||||
Data = list
|
||||
});
|
||||
}
|
||||
|
||||
private void PdfToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
string fileName = "";
|
||||
using (var dialog = new SaveFileDialog { Filter = "pdf|*.pdf" })
|
||||
{
|
||||
if (dialog.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
fileName = dialog.FileName.ToString();
|
||||
MessageBox.Show("Success", "Ready", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
}
|
||||
|
||||
var listEmp = _LogicE.Read(null);
|
||||
var listSubd = _LogicS.Read(null);
|
||||
|
||||
var data = new Dictionary<string, List<double>>();
|
||||
|
||||
foreach (var item in listSubd)
|
||||
{
|
||||
var listSorted = listEmp.Where(x => x.Subdivision.Equals(item.Name));
|
||||
|
||||
(int, int, int, int) x = (
|
||||
listSorted.Where(y => y.Experience >= 1 && y.Experience < 5).Count(),
|
||||
listSorted.Where(y => y.Experience >= 5 && y.Experience < 10).Count(),
|
||||
listSorted.Where(y => y.Experience >= 10 && y.Experience < 20).Count(),
|
||||
listSorted.Where(y => y.Experience >= 20 && y.Experience < 30).Count());
|
||||
|
||||
data.Add(item.Name, new List<double> { x.Item1, x.Item2, x.Item3, x.Item4 });
|
||||
}
|
||||
|
||||
pdfDiagram.CreateLineDiagram(fileName, "Chart", "Chart", data);
|
||||
}
|
||||
|
||||
private void DirectoryToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var form = Program.Container.Resolve<Directory>();
|
||||
form.ShowDialog();
|
||||
}
|
||||
}
|
||||
}
|
120
COP_9/FormView/FormMain1.resx
Normal file
120
COP_9/FormView/FormMain1.resx
Normal file
@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
29
COP_9/FormView/FormView.csproj
Normal file
29
COP_9/FormView/FormView.csproj
Normal file
@ -0,0 +1,29 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Components" Version="1.0.0" />
|
||||
<PackageReference Include="ComponentsLibraryNet60" Version="1.0.0" />
|
||||
<PackageReference Include="ControlsLibraryNet60" Version="1.0.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.18">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Unity" Version="5.11.10" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\EnterpriseBusinessLogic\EnterpriseBusinessLogic.csproj" />
|
||||
<ProjectReference Include="..\EnterpriseContracts\EnterpriseContracts.csproj" />
|
||||
<ProjectReference Include="..\EnterpriseDataBaseImplemen\EnterpriseDataBaseImplement.csproj" />
|
||||
<ProjectReference Include="..\WinFormsLibrary1\WinFormsLibrary1.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
45
COP_9/FormView/Program.cs
Normal file
45
COP_9/FormView/Program.cs
Normal file
@ -0,0 +1,45 @@
|
||||
using EnterpriseBusinessLogic.BusinessLogics;
|
||||
using EnterpriseContracts.BusinessLogicContracts;
|
||||
using EnterpriseContracts.StorageContracts;
|
||||
using EnterpriseDataBaseImplement.Implements;
|
||||
using Unity;
|
||||
using Unity.Lifetime;
|
||||
|
||||
|
||||
|
||||
namespace FormView
|
||||
{
|
||||
internal static class Program
|
||||
{
|
||||
private static IUnityContainer container = null;
|
||||
public static IUnityContainer Container { get { container ??= BuildUnityContainer; return container; } }
|
||||
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.SetHighDpiMode(HighDpiMode.SystemAware);
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(Container.Resolve<FormMain>());
|
||||
}
|
||||
|
||||
private static IUnityContainer BuildUnityContainer
|
||||
{
|
||||
get
|
||||
{
|
||||
var currentContainer = new UnityContainer();
|
||||
|
||||
currentContainer.RegisterType<IEmployeeStorage, EmployeeStorage>(new HierarchicalLifetimeManager());
|
||||
currentContainer.RegisterType<ISubdivisionStorage, SubdivisionStorage>(new HierarchicalLifetimeManager());
|
||||
|
||||
currentContainer.RegisterType<IEmployeeLogic, EmployeeLogic>(new HierarchicalLifetimeManager());
|
||||
currentContainer.RegisterType<ISubdivisionLogic, SubdivisionLogic>(new HierarchicalLifetimeManager());
|
||||
|
||||
currentContainer.RegisterType<EmployerForm>();
|
||||
currentContainer.RegisterType<Directory>();
|
||||
|
||||
return currentContainer;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -8,6 +8,13 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.18">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\WinFormsLibrary1\WinFormsLibrary1.csproj" />
|
||||
</ItemGroup>
|
||||
|
Loading…
Reference in New Issue
Block a user