// GET: Customer/Edit/5
 public async Task <ActionResult> Edit(string id)
 {
     return(View(await licenseService.GetCustomer(id)));
 }