public void Insert(string adress, string sex, string phone, string name) { HairStyle hs = new HairStyle(this.adress, this.sex, this.phone, this.name); BarberModel bm = new BarberModel(); if (bm.validate(hs)) { bm.Insert(hs); } }
public bool validate(HairStyle hs) { return(true); }
public bool Insert(HairStyle hs) { return(validate(hs)); }