private void AddEmployeeMonthlyTimesheetSubmissionStatus(EmployeeTimesheetInformation employeeTimesheetInformation)
 {
     throw new NotImplementedException();
     //This method will call data store to update employee's monthly timesheet submission status to database
 }
 private void AddEmployeeTimesheetInformation(EmployeeTimesheetInformation employeeTimesheetInformation)
 {
     throw new NotImplementedException();
     //This method will call data store to add this record to database
 }
 private bool IsTimesheetSubmitted(DateTime date, EmployeeTimesheetInformation employeeTimesheetInformation)
 {
     throw new NotImplementedException();
 }
 private bool HasUserLoggedHours(DateTime date, EmployeeTimesheetInformation employeeTimesheetInformation)
 {
     throw new NotImplementedException();
 }