30 lines
816 B
C#
30 lines
816 B
C#
using ConstructionCompanyDataModels.Enums;
|
|
using ConstructionCompanyDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ConstructionCompanyContracts.BindingModels
|
|
{
|
|
public class OrderBindingModel : IOrderModel
|
|
{
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
public string Adress { get; set; } = string.Empty;
|
|
|
|
public double Price => throw new NotImplementedException();
|
|
|
|
public OrderStatus Status => throw new NotImplementedException();
|
|
|
|
public string CustomerNumber { get; set; } = string.Empty;
|
|
|
|
public DateTime DateBegin { get; set; } = DateTime.Now.Date;
|
|
|
|
public DateTime? DateEnd { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|