cqrs-journey icon indicating copy to clipboard operation
cqrs-journey copied to clipboard

I am facing issues in using the application

Open chandan315 opened this issue 7 years ago • 0 comments

I have created a new Conference and can view the conference on conference.web,public app But when I go to Register/StartRegistration method, I am not able to see anything on the page

The StartRegistration method does not give me anything to register Registration Type , Price , Available, Quantity

I don't have any item to register for....

When I am on conference.web.admin app

Following method returns orders variable as null.

public ViewResult Orders()
        {
            var orders = this.Service.FindOrders(this.Conference.Id);

            return View(orders);
        }



```To summarise, I have just created a conference.
I haven't done any registration for orders and attendees.
I can see the conference and seat types but not anything in the registration tab.

There is nothing in the Orders table.

chandan315 avatar Sep 30 '16 14:09 chandan315