public async Task <IActionResult> GetStoreDetail(int id_store)
 {
     try
     {
         return(Ok(_storageStore.GetStoreFilial(id_store)));
     }
     catch (Exception ex)
     {
         return(BadRequest(Json(new { message = ex.Message })));
     }
 }