public bool Delete(ConstructionDTO entityDto) { return(ConstructionRepository.Build().Delete(ConstructionMapper.Build().ToEntity(entityDto))); }
public ConstructionDTO GetWithChildren(int id) { return(ConstructionMapper.Build().ToDtoWithChildren(ConstructionRepository.Build().GetWithChildren(id))); }
public bool UpdateWithChildren(ConstructionDTO entityDto) { return(ConstructionRepository.Build().UpdateWithChildren(ConstructionMapper.Build().ToEntityWithChildren(entityDto))); }
//public bool CreateOrUpdate(ConstructionDTO entityDto) //{ // return entityDto.Id > 0 ? Update(entityDto) : Create(entityDto); //} public List <ConstructionDTO> GetAll() { return(ConstructionMapper.Build().ToDtoList(ConstructionRepository.Build().GetAll()).ToList()); }
public int Create(ConstructionDTO entityDto) { return(ConstructionRepository.Build().Create(ConstructionMapper.Build().ToEntity(entityDto))); }