Ejemplo n.º 1
0
 public STimeTable MapCreateRequesttoTimeTable(CreateTimeTableCommand request)
 {
     return(_mapper.Map <CreateTimeTableCommand, STimeTable>(request));
 }
Ejemplo n.º 2
0
 public async Task <ActionResult> CreateTimeTableAsync([FromBody] CreateTimeTableCommand command)
 {
     return(StatusCode(200, await CommandAsync(command)));
 }