fix
This commit is contained in:
parent
d28125e92d
commit
7b34830bd8
@ -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; }
|
||||
}
|
||||
}
|
||||
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user