Ejemplo n.º 1
0
 public bool PostCategory(Category category)
 {
     if (category == null)
     {
         throw new ArgumentNullException();
     }
     return(_categoryDal.PostCategory(category));
 }