Beispiel #1
0
        /// <summary>
        /// Opening renting equipment page with getting customer information
        /// </summary>
        /// <param name="customerId"></param>
        /// <returns>Rent Equipment page</returns>
        public async Task <IActionResult> RentEquipment(int customerId)
        {
            var result = await customerApiService.GetCustomer(customerId);

            return(View(result.Data));
        }