Example #1
0
 public OrdersVM GetUserWebinarOrder(Guid webinarId, Guid userId)
 {
     try
     {
         var response = _orderRepo.GetUserWebinarOrder(userId, webinarId);
         return(_mapper.Map <OrdersVM>(response));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }