Exemplo n.º 1
0
 public void Update(Project model)
 {
     if (model == null)
         throw new ArgumentNullException("project");
     projectRepository.Update(model);
 }
Exemplo n.º 2
0
 public int Insert(Project model)
 {
     if (model == null)
         throw new ArgumentNullException("project");
     return projectRepository.Insert(model);
 }