public Costumer() { m_Adress = new Adress(); RaisePropertyChanged(nameof(Adress)); }
public Producer() { m_Adress = new Adress(); RaisePropertyChanged(nameof(Adress)); }
public Costumer(int p_Id, string p_LastName, string p_FirstName, DateTime p_Birthday, string p_Company, Adress p_Adress, string p_Phone, string p_Email) { m_Id = p_Id; m_LastName = p_LastName; m_FirstName = p_FirstName; m_Birthday = p_Birthday; m_Company = p_Company; m_Adress = p_Adress; m_Phone = p_Phone; m_Email = p_Email; }