using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolDataModels.Models { public interface IEmployeeModel : IId { public string EmployeeName { get; set; } public string EmployeePassword { get; set; } public string EmployeeEmail { get; set; } public string EmployeePhone { get; set; } } }