namespace ShopDataModels.Models { public interface ICustomerModel : IId { string FIO { get; } string PhotoFilePath { get; } string Email { get; } string ProductCategoryName { get; } } }