Ejemplo n.º 1
0
 public void Post([FromBody] TimeAmountAddCmd amountAdd)
 {
     _timesRepository.Add(amountAdd);
 }
Ejemplo n.º 2
0
        public void Add(TimeAmountAddCmd amountAdd)
        {
            var newAmount = _commandHandler.Handle(amountAdd);

            Add(newAmount);
        }