Lab3_Main
This commit is contained in:
parent
a952dede9d
commit
5f09122350
@ -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; }
|
||||
|
2
CarpentryWorkshopView/FormComponents.Designer.cs
generated
2
CarpentryWorkshopView/FormComponents.Designer.cs
generated
@ -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);
|
||||
|
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user