internal ICustomer CreateCustomer(string id, string name, CustomerGender gender, int age, string phone, string fax, string idcard, string roomid, string company, string address)
 {
     return(dbCon.CreateCustomer(id, name, gender, age, phone, fax, idcard, roomid, company, address));
 }