public void InsertMotnhlyWorkout()
        {
            //Arrange
            var saveInstance = new MonthlyWorkout()
            {
                Name      = "TestMonthly",
                WeekFour  = _testWeeklyWorkout,
                WeekOne   = _testWeeklyWorkout,
                WeekThree = _testWeeklyWorkout,
                WeekTwo   = _testWeeklyWorkout
            };

            //Act
            _testWorkout = _monthWorkoutService.InsertMonthlyWorkout(saveInstance, _testUser);

            //Asser
            Assert.IsFalse(_monthWorkoutService.GetMonthlyWorkouts(_testUser).Count() != 1);
        }
        public IActionResult Post([FromBody] MonthlyWorkout monthlyWorkout)
        {
            var created = _monthlyWorkoutService.InsertMonthlyWorkout(monthlyWorkout, _user);

            return(CreatedAtAction(nameof(Get), new { created.Id }, created));
        }