This commit is contained in:
Ismailov_Rovshan 2023-04-08 22:15:59 +04:00
parent d28125e92d
commit 7b34830bd8
3 changed files with 26 additions and 0 deletions

View File

@ -28,5 +28,8 @@ namespace FurnitureContracts.ViewModel
public int OrdersId { get; set; }
public string OrdersName { get; set; } = string.Empty;
public Dictionary<int, IMaterialModel> FurnitureMaterials { get; set; }
public DateTime DateTo { get; set; }
}
}

View File

@ -22,5 +22,11 @@ namespace FurnitureContracts.ViewModel
public Dictionary<int, IMaterialModel> HeadsetModuleMaterial { get; set; }
public string MasterName { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public DateTime DateIssue { get; set; }
public DateTime DateDelivery { get; set; }
}
}

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureFactoryBusinessLogic.OfficePackage.HelperModels
{
internal class ExcelInfoMaster
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
//public List<> { get; set; } = new();
}
}