namespace SushiBarDataModels.Models { public interface ICustomer : IId { string Fio { get; } DateTime BirthdayDate { get; } double SumOfAllOrders { get; } } }