public bool Delete(Entity.Model.Asset entity)
 {
     IAssetComponent component = new AssetComponent();
     try
     {
         component.Delete(entity);
     }
     catch (Exception ex)
     {
         
         throw new FaultException(ex.Message);
     }
     return true;
    
    // throw new NotImplementedException();
 }