Esempio n. 1
0
 public StudentCoursePlannerCheckoutAcceptedIntegrationEvent(string studentId, string studentName, Guid requestId,
                                                             Models.CoursePlanner planner)
 {
     StudentId   = studentId;
     StudentName = studentName;
     RequestId   = requestId;
     Planner     = planner;
 }
 public StudentCoursePlannerCheckoutAcceptedIntegrationEventHandler(string userId, string userName, Guid requestId,
                                                                    Models.CoursePlanner planner)
 {
 }
Esempio n. 3
0
 public async Task <ActionResult <Models.CoursePlanner> > UpdateBasketAsync([FromBody] Models.CoursePlanner value)
 {
     return(Ok(await _repository.UpdateCoursePlannerAsync(value)));
 }