Lab3_Main

This commit is contained in:
artiogf 2023-03-09 11:59:25 +04:00
parent a952dede9d
commit 5f09122350
3 changed files with 11 additions and 7 deletions

View File

@ -2,21 +2,25 @@
using CarpentryWorkshopContracts.ViewModels;
using CarpentryWorkshopDataModels.Enums;
using CarpentryWorkshopDataModels.Models;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CarpentryWorkshopDatabaseImplement.Models
{
public class Order : IOrderModel
{
public int Id { get; set; }
[ForeignKey("WoodId")]
public int WoodId { get; set; }
[Required]
public string WoodName { get; set; } = string.Empty;
[Required]
public int Count { get; set; }
[Required]
public double Sum { get; set; }
[Required]
public OrderStatus Status { get; set; }
[Required]
public DateTime DateCreate { get; set; }
public DateTime? DateImplement { get; set; }

View File

@ -97,7 +97,7 @@
this.Controls.Add(this.ButtonAdd);
this.Controls.Add(this.dataGridView);
this.Name = "FormComponents";
this.Text = "Экипировка";
this.Text = "Компонент";
this.Load += new System.EventHandler(this.FormComponents_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
this.ResumeLayout(false);

View File

@ -43,7 +43,7 @@
this.labelComponent.Name = "labelComponent";
this.labelComponent.Size = new System.Drawing.Size(76, 15);
this.labelComponent.TabIndex = 0;
this.labelComponent.Text = "Экипировка:";
this.labelComponent.Text = "Компонент:";
//
// labelCount
//
@ -102,7 +102,7 @@
this.Controls.Add(this.labelCount);
this.Controls.Add(this.labelComponent);
this.Name = "FormWoodComponent";
this.Text = "экипировка набора";
this.Text = "компонент набора";
this.ResumeLayout(false);
this.PerformLayout();