public void Save(ILocation location)
        {
            if (location == null)
            {
                throw new ArgumentNullException("location");
            }
            
            _inventoryService.Save(location.ToDao());

            OnActivateLocationsViewRequested();
        }
 public bool Save(ILocation location)
 {
     return _inventoryService.SaveLocation(location.ToDao());
 }