Compare commits
2 Commits
e1bc27415a
...
89ea17e110
Author | SHA1 | Date | |
---|---|---|---|
89ea17e110 | |||
7b34830bd8 |
@ -28,5 +28,8 @@ namespace FurnitureContracts.ViewModel
|
|||||||
public int OrdersId { get; set; }
|
public int OrdersId { get; set; }
|
||||||
public string OrdersName { get; set; } = string.Empty;
|
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 Dictionary<int, IMaterialModel> HeadsetModuleMaterial { get; set; }
|
||||||
|
|
||||||
public string MasterName { get; set; } = string.Empty;
|
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