public IActionResult ApproveByHumanResourceDept(int id)
        {
            var username = this.GetCurrentUserName();

            var repo = this.Storage.GetRepository <IRequestOvertimeRepository>();

            RequestOvertime requestOvertime = repo.WithKey(id);

            if (requestOvertime == null)
            {
                return(this.NotFound(new { success = false }));
            }
            if (requestOvertime.HasFeedbackByScrumMaster() || requestOvertime.HasFeedbackByHumanResource())
            {
                this.ModelState.AddModelError("id", "Already have feedback by Scrum Master or HR");
            }

            if (ModelState.IsValid)
            {
                requestOvertime.HumanResourceDeptApproved(20, GetCurrentUserName());
                this.Storage.Save();

                return(Ok(new { success = true }));
            }
            return(BadRequest());
        }
        public IActionResult ApproveByHumanResourceDept(int id)
        {
            var username = this.GetCurrentUserName();

            var repo = this.Storage.GetRepository <IRequestOvertimeRepository>();

            RequestOvertime requestOvertime = repo.WithKey(id);

            if (requestOvertime == null)
            {
                return(this.NotFound(new { success = false }));
            }
            requestOvertime.HumanResourceDeptApproved(20, GetCurrentUserName());
            this.Storage.Save();

            return(Ok(new { success = true }));
        }