19 lines
407 B
C#
19 lines
407 B
C#
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; }
|
|
}
|
|
}
|