14 lines
440 B
C#

namespace Publication.Entites;
public class PublishingHouse
{
public int Id { get; set; }
public string Title { get; set; }
public string Address { get; set; }
public string WorkPhone { get; set; }
public static PublishingHouse CreateEntity(int id, string title, string address, string workPhone)
{
return new PublishingHouse { Id = id, Address = address, Title = title, WorkPhone = workPhone };
}
}