Example #1
0
 public void DeleteEntity <E>(E entity) where E : class
 {
     try
     {
         commonR.DeleteEntity <E>(entity);
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #2
0
 public void DeleteProducto <E>(E entity) where E : class
 {
     commonR.DeleteEntity <E>(entity);
 }