コード例 #1
0
ファイル: RenterService.cs プロジェクト: TobiasVidal/bluedot
        public Renter GetById(int RenterId)
        {
            var Renter = RenterRepository.GetById(RenterId);

            if (Renter == null)
            {
                throw new BadRequestException(ErrorMessages.TrabajadorNoEncontrado);
            }

            return(Renter);
        }
コード例 #2
0
ファイル: RenterService.cs プロジェクト: TobiasVidal/bluedot
        public void DeleteRenter(int RenterId)
        {
            var Renter = RenterRepository.GetById(RenterId);

            RenterRepository.Delete(Renter);
        }
コード例 #3
0
 public void OnGet(int id)
 {
     Renter         = RenterRepository.GetById(id);
     Rentals        = RentalRepository.GetByRenterId(id);
     Renter.Rentals = Rentals;
 }