public void OnGet(Guid id)
 {
     Customer = CustomerStore.GetCustomerById(id);
     BornDate = Customer.BornDate.ToString("dd/MM/yyyy");
 }
 public void OnGet(Guid id) //llega de la pagina id
 {
     Customer = CustomerStore.GetCustomerById(id);
 }
Exemple #3
0
 public void OnGet(Guid id)
 {
     Customer = CustomerStore.GetCustomerById(id);
 }