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