Ejemplo n.º 1
0
 public IActionResult AddStoresToUser(List <int> storeIdList)
 {
     if (ModelState.IsValid)
     {
         if (_storeService.AddStoresToUser(storeIdList))
         {
             return(View());
         }
     }
     return(View(storeIdList));
 }