public async Task <IList <BoxListDto> > GetAllBoxs(int placeId) { var boxs = await _monitorManager.GetAllBoxs(placeId); return(Mapper.Map <IList <BoxListDto> >(boxs)); }