public IActionResult CreateReally(AssetViewModel model)
        {
            _assetsService.Add(model.ToServiceModel());

            return(RedirectToAction("Index"));
        }
 public Asset Add(Asset asset)
 {
     Console.WriteLine($"######### Performing {nameof(Add)} #########");
     return(_inner.Add(asset));
 }