public async Task <ActionResult> EditStoreModal(int storeId)
        {
            var store = await _storeAppService.Get(new EntityDto <int>(storeId));

            var model = new EditStoreModalViewModel
            {
                Store = store
            };

            return(View("_EditStoreModal", model));
        }