public void ShiftCreate(ShiftCreateCommand command)
 {
     this.commandFacade.ShiftCreate(command);
 }
 public void ShiftCreate(ShiftCreateCommand command)
 {
     CommandBus.Dispatch(command);
 }
        public IActionResult CreateShift(ShiftCreateCommand command)
        {
            shiftCommandFacade.ShiftCreate(command);

            return(RedirectToAction("ShiftTitle"));
        }