public ActionResult CreateUpdateDailyLogPopup(int id)
        {
            var dailylog     = _dailylogComponent.GetDailyLog(id);
            var customerList = _dailylogComponent.GetAllCustomer();
            var guardlist    = _dailylogComponent.GetAllGuard();

            if (dailylog == null)
            {
                dailylog = new DailyLogViewModel();
            }
            dailylog.CustomerList = new SelectList(_dailylogComponent.GetAllCustomer(), "CustomerId", "NameEmail");
            dailylog.GuardList    = new SelectList(_dailylogComponent.GetAllGuard(), "GuardId", "NameSSN");
            return(PartialView("/Views/Shared/Partials/_DailyLog.cshtml", dailylog));
        }