public IActionResult Post([FromBody] Phase phase)
 {
     using (var scope = new TransactionScope())
     {
         _phaseRepository.InsertPhase(phase);
         scope.Complete();
         return(CreatedAtAction(nameof(Get), new { id = phase.Id }, phase));
     }
 }