public async Task <BowsersDto> GetBowser(int id)
        {
            BowsersDto bowser = await _bowserService.GetBowser(id);

            return(bowser);
        }
 public async Task UpdateBowser(BowsersDto input)
 {
     await _bowserService.UpdateBowser(input);
 }
        public BowsersDto GetBowserBynoPlate(string noPlate)
        {
            BowsersDto bowser = _bowserService.GetBowserBynoPlate(noPlate);

            return(bowser);
        }