public void EmployeeAttendenceLogoutIns(EmployeeAttendenceModel model)
 {
     _IAS.EmployeeAttendenceLogoutIns(model.CompanyId, model.AttendanceId);
 }
        public void EmployeeAttendenceIns(EmployeeAttendenceModel model)
        {
            var status = model.IsPresent == false ? true : false;

            _IAS.EmployeeAttendenceIns(model.CompanyId, model.EmployeeId, status, model.InsertUserId);
        }