public async Task <ActionResult <IEnumerable <BinTypeDto> > > GetBinTypes()
        {
            var binTypes = await _binTypeRepository.GetBinTypes();

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