Ejemplo n.º 1
0
 public void UpdMaintConsumer(EquipmentMaintDetailConsumer updMaintConsumer)
 {
     try
     {
         _equipmentMaintDetailConsumerDal.Update(updMaintConsumer);
     }
     catch (RepositoryException ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 2
0
 public void DelMaintConsumer(EquipmentMaintDetailConsumer delMaintConsumer)
 {
     try
     {
         _equipmentMaintDetailConsumerDal.Delete(delMaintConsumer);
     }
     catch (RepositoryException ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 3
0
 public void AddMaintConsumer(EquipmentMaintDetailConsumer newMaintConsumer)
 {
     try
     {
         _equipmentMaintDetailConsumerDal.Add(newMaintConsumer);
     }
     catch (RepositoryException ex)
     {
         throw ex;
     }
 }