Exemplo n.º 1
0
 public ActionResult <Result> GetTicketByOwner(string ownerId)
 {
     using (ConcertSeatsBLL concert = new ConcertSeatsBLL())
     {
         Result result = concert.GetTicketByOwner(ownerId, this.Message);
         return(result);
     }
 }