public ActionResult InsertCustomer(ManagerCustomerModel model)
        {
            var entity = model.CreateEntity(model);
            model.Save(entity);

            return View("Index");
        }