public void UpdMaintConsumer(EquipmentMaintDetailConsumer updMaintConsumer) { try { _equipmentMaintDetailConsumerDal.Update(updMaintConsumer); } catch (RepositoryException ex) { throw ex; } }
public void DelMaintConsumer(EquipmentMaintDetailConsumer delMaintConsumer) { try { _equipmentMaintDetailConsumerDal.Delete(delMaintConsumer); } catch (RepositoryException ex) { throw ex; } }
public void AddMaintConsumer(EquipmentMaintDetailConsumer newMaintConsumer) { try { _equipmentMaintDetailConsumerDal.Add(newMaintConsumer); } catch (RepositoryException ex) { throw ex; } }