예제 #1
0
 /// <summary>
 /// Doing something
 /// </summary>
 /// <param name="value"></param>
 public void Post([FromBody] string value)
 {
     concertService.Create(
         Mapper.Map <Concert>(
             new ConcertDTO()
     {
         ClotheType             = null,
         ConcertUrl             = "teststronakaski.cba.pl",
         Content                = "jakis tam content",
         EndTime                = DateTime.Now,
         IsVisibleIntoTimetable = true,
         MainPhoto              = null,
         Members                = null,
         Photos    = null,
         Place     = "Warsaw SGGW",
         Title     = "Super nowy koncert",
         StartTime = DateTime.Now,
     }));
 }