using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BarberShopDataModels { public interface IAppointmentModel : IId { int ClientId { get; } int EmployeeId { get; } int ServiceId { get; } DateTime Time { get; } } }