ПИбд-23 Старостин Иван Лабораторная работа №5 #7

Closed
Ivan_Starostin wants to merge 41 commits from lab5 into lab4
2 changed files with 17 additions and 1 deletions
Showing only changes of commit 51cf2ed10f - Show all commits

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShipyardDataModels
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}

View File

@ -10,5 +10,6 @@ namespace ShipyardDataModels.Models
OrderStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
}
int ClientId { get; }
}
}