public void Update(Role model)
 {
     if (model == null)
         throw new ArgumentNullException("role");
     roleRepository.Update(model);
 }
 public void Insert(Role model)
 {
     if (model == null)
         throw new ArgumentNullException("role");
     roleRepository.Insert(model);
 }