예제 #1
0
 public IHttpActionResult CreateStoreSetup(StoreSetupViewModel storeSetup)
 {
     try
     {
         return(Ok(_storeManager.CreateStoreSetup(storeSetup)));
     }
     catch (Exception ex)
     {
         //LoggerEx.HandleException(LoggingBoundaries.DomainLayer, ex, false);
         return(BadRequest());
     }
 }