public async Task <ActionResult <BinTypeDto> > GetBinTypeById(int id)
        {
            var binType = await _binTypeRepository.GetBinTypeById(id);

            return(Ok(_mapper.Map <BinTypeDto>(binType)));
        }