PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenDataModels/Models/ICookModel.cs

19 lines
407 B
C#
Raw Normal View History

2023-04-06 14:29:23 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenDataModels.Models
{
public interface ICookModel : IId
{
string Name { get; }
string Surname { get; }
string? Patronymic { get; }
DateTime DateOfBirth { get; }
string Position { get; }
int ClientId { get; }
}
}