├── .gitattributes ├── .gitignore ├── Dll └── TopSdk.dll ├── LICENSE ├── README.md ├── Resource ├── code.gif ├── down.gif ├── logon.gif └── start.gif └── Source ├── SmoONE.Application ├── App.config ├── Helper.cs ├── IServices │ ├── IAttendanceService.cs │ ├── ICGroupService.cs │ ├── IContactService.cs │ ├── ICostCenterService.cs │ ├── IDepartmentService.cs │ ├── ILeaveService.cs │ ├── IReimbursementService.cs │ └── IUserService.cs ├── Properties │ └── AssemblyInfo.cs ├── Services │ ├── AttendanceService.cs │ ├── CGroupService.cs │ ├── ContactService.cs │ ├── CostCenterService.cs │ ├── DepartmentService.cs │ ├── LeaveService.cs │ ├── ReimbursementService.cs │ └── UserService.cs ├── SmoONE.Application.csproj └── packages.config ├── SmoONE.CommLib ├── DESEncrypt.cs ├── DataAnnotationHelper.cs ├── ModelValidationError.cs ├── Properties │ └── AssemblyInfo.cs ├── ReturnInfo.cs └── SmoONE.CommLib.csproj ├── SmoONE.DTOs ├── Enum │ ├── AttendanceType.cs │ ├── IsActive.cs │ ├── IsOutOfRange.cs │ ├── L_Status.cs │ ├── RB_Status.cs │ ├── Sex.cs │ ├── StatisticsTime.cs │ ├── StatisticsType.cs │ ├── TimeType.cs │ ├── Week.cs │ ├── WorkOrRest.cs │ └── WorkTimeType.cs ├── IEntity.cs ├── InputDTO │ ├── ALInputDto.cs │ ├── ATInputDto.cs │ ├── AT_CDInputDto.cs │ ├── CCInputDto.cs │ ├── CCTTInputDto.cs │ ├── CGroupInputDto.cs │ ├── ContactInputDto.cs │ ├── DepInputDto.cs │ ├── LeaveInputDto.cs │ ├── OLInputDto.cs │ ├── RBInputDto.cs │ ├── RBRTTInputDto.cs │ ├── RB_RowsInputDto.cs │ └── UserInputDto.cs ├── OutputDTO │ ├── ALDto.cs │ ├── ALStatisticsDto.cs │ ├── ALStatisticsItems.cs │ ├── ALStatisticsItemsDetailDto.cs │ ├── ATCDDetailDto.cs │ ├── ATCDDto.cs │ ├── ATDetailDto.cs │ ├── ATDto.cs │ ├── CCDetailDto.cs │ ├── CCDto.cs │ ├── CC_Type_TemplateDto.cs │ ├── CGroupDto.cs │ ├── ContactDto.cs │ ├── DailyResultDto.cs │ ├── DailyStatisticsDto.cs │ ├── DepDetailDto.cs │ ├── DepartmentDto.cs │ ├── Items_ALDto.cs │ ├── LeaveDetailDto.cs │ ├── LeaveDto.cs │ ├── MonthlyResultDto.cs │ ├── MonthlyStatisticsDto.cs │ ├── OLDto.cs │ ├── OLStatisticsDetailDto.cs │ ├── RBDetailDto.cs │ ├── RB_RType_TemplateDto.cs │ ├── RB_RowsDto.cs │ ├── ReimbursementDto.cs │ ├── ResultInfo.cs │ ├── UserDepDto.cs │ ├── UserDetailDto.cs │ ├── UserDto.cs │ └── WorkTimeDto.cs ├── Properties │ └── AssemblyInfo.cs ├── ResultInfo.cs └── SmoONE.DTOs.csproj ├── SmoONE.Domain ├── App.config ├── Entity │ ├── Attendance │ │ ├── AT_CustomDate.cs │ │ ├── AT_UserLog.cs │ │ ├── AttendanceLog.cs │ │ ├── AttendanceScheduling.cs │ │ ├── AttendanceTemplate.cs │ │ ├── DailyResult.cs │ │ ├── DailyStatistics.cs │ │ ├── MonthlyResult.cs │ │ ├── MonthlyStatistics.cs │ │ ├── OL_LogDateList.cs │ │ └── OvertimeLog.cs │ ├── Contact │ │ ├── CGroup.cs │ │ └── Contact.cs │ ├── CostCenter │ │ ├── CC_Type_Template.cs │ │ ├── CostCenter.cs │ │ └── CostCenter_Type.cs │ ├── Leave │ │ ├── Leave.cs │ │ └── LeaveType.cs │ ├── Reimbursement │ │ ├── RB_RType.cs │ │ ├── RB_RType_Template.cs │ │ ├── RB_Rows.cs │ │ └── Reimbursement.cs │ └── User │ │ ├── Department.cs │ │ ├── Log.cs │ │ ├── Menu.cs │ │ ├── Role.cs │ │ ├── RoleMenu.cs │ │ ├── User.cs │ │ ├── UserRole.cs │ │ └── ValidateCode.cs ├── IAggregateRoot.cs ├── IEntity.cs ├── IRepository │ ├── IAT_CustomDateRepository.cs │ ├── IAT_UserLogRepository.cs │ ├── IAttendanceLogRepository.cs │ ├── IAttendanceSchedulingRepository.cs │ ├── IAttendanceTemplateRepository.cs │ ├── ICC_Type_TemplateRepository.cs │ ├── ICGroupRepository.cs │ ├── IContactRepository.cs │ ├── ICostCenterRepository.cs │ ├── ICostCenter_TypeRepository.cs │ ├── IDailyResultRepository.cs │ ├── IDailyStatisticsRepository.cs │ ├── IDepartmentRepository.cs │ ├── ILeaveRepository.cs │ ├── ILeaveTypeRepository.cs │ ├── ILogRepository.cs │ ├── IMenuRepository.cs │ ├── IMonthlyResultRepository.cs │ ├── IMonthlyStatisticsRepository.cs │ ├── IOvertimeLogRepository.cs │ ├── IRB_RowsRepository.cs │ ├── IRB_TypeRepository.cs │ ├── IRB_Type_TemplateRepository.cs │ ├── IReimbursementRepository.cs │ ├── IRepository.cs │ ├── IRoleMenuRepository.cs │ ├── IRoleRepository.cs │ ├── IUserRepository.cs │ ├── IUserRoleRepository.cs │ └── IValidateCodeRepository.cs ├── Properties │ └── AssemblyInfo.cs ├── SmoONE.Domain.csproj └── packages.config ├── SmoONE.Infrastructure ├── App.config ├── Configuration │ ├── AttendanceSchedulingConfiguration.cs │ ├── AttendanceTemplateConfiguration.cs │ ├── CostCenterConfiguration.cs │ ├── DepartmentConfiguration.cs │ ├── LeaveConfiguration.cs │ ├── RB_RowsConfiguration.cs │ ├── RB_Type_TemplateConfiguration.cs │ └── ReimbursementConfiguration.cs ├── DatabaseInitializer.cs ├── IDbContext.cs ├── IUnitOfWork.cs ├── Migrations │ ├── 201612290651353_Init.Designer.cs │ ├── 201612290651353_Init.cs │ ├── 201612290651353_Init.resx │ ├── 201703060726029_Attendance.Designer.cs │ ├── 201703060726029_Attendance.cs │ ├── 201703060726029_Attendance.resx │ ├── 201710240738119_AddGestures.Designer.cs │ ├── 201710240738119_AddGestures.cs │ ├── 201710240738119_AddGestures.resx │ ├── 201801110211362_AddIM.Designer.cs │ ├── 201801110211362_AddIM.cs │ ├── 201801110211362_AddIM.resx │ └── Configuration.cs ├── Properties │ └── AssemblyInfo.cs ├── SmoONE.Infrastructure.csproj ├── SmoONEDbContext.cs ├── UnitOfWork.cs └── packages.config ├── SmoONE.Repository ├── App.config ├── Attendance │ ├── AT_CustomDateRepository.cs │ ├── AT_UserLogRepository.cs │ ├── AttendanceLogRepository.cs │ ├── AttendanceSchedulingRepository.cs │ ├── AttendanceTemplateRepository.cs │ ├── DailyResultRepository.cs │ ├── DailyStatisticsRepository.cs │ ├── MonthlyResultRepository.cs │ ├── MonthlyStatisticsRepository.cs │ └── OvertimeLogRepository.cs ├── BaseRepository.cs ├── Contact │ ├── CGroupRepository.cs │ └── ContactRepository.cs ├── CostCenter │ ├── CC_Type_TemplateRepository.cs │ ├── CostCenterRepository.cs │ └── CostCenter_TypeRepository.cs ├── Leave │ ├── LeaveRepository.cs │ └── LeaveTypeRepository.cs ├── Properties │ └── AssemblyInfo.cs ├── Reimbursement │ ├── RB_RowsRepository.cs │ ├── RB_TypeRepository.cs │ ├── RB_Type_TemplateRepository.cs │ └── ReimbursementRepository.cs ├── SmoONE.Repository.csproj ├── User │ ├── DepartmentRepository.cs │ ├── LogRepository.cs │ ├── MenuRepository.cs │ ├── RoleMenuRepository.cs │ ├── RoleRepository.cs │ ├── UserRepository.cs │ ├── UserRoleRepository.cs │ └── ValidateCodeRepository.cs └── packages.config ├── SmoONE.StatisticsService ├── App.config ├── Program.cs ├── ProjectInstaller.Designer.cs ├── ProjectInstaller.cs ├── ProjectInstaller.resx ├── Properties │ └── AssemblyInfo.cs ├── SmoONE.StatisticsService.csproj ├── StatisticsService.Designer.cs ├── StatisticsService.cs └── packages.config ├── SmoONE.UI ├── ATAddressDistance.cs ├── ATMainPicture.cs ├── ATMainState.cs ├── ATStatSelfDetail.cs ├── Attendance │ ├── frmATGPSEdit.Designer.cs │ ├── frmATGPSEdit.cs │ ├── frmATGPSEdit.resx │ ├── frmATUser.Designer.cs │ ├── frmATUser.cs │ ├── frmATUser.resx │ ├── frmAttendanceCalendarSetting.Designer.cs │ ├── frmAttendanceCalendarSetting.cs │ ├── frmAttendanceCalendarSetting.resx │ ├── frmAttendanceCreate.Designer.cs │ ├── frmAttendanceCreate.cs │ ├── frmAttendanceCreate.resx │ ├── frmAttendanceDate.Designer.cs │ ├── frmAttendanceDate.cs │ ├── frmAttendanceDate.resx │ ├── frmAttendanceMain.Designer.cs │ ├── frmAttendanceMain.cs │ ├── frmAttendanceMain.resx │ ├── frmAttendanceMainReason.Designer.cs │ ├── frmAttendanceMainReason.cs │ ├── frmAttendanceMainReason.resx │ ├── frmAttendanceManager.Designer.cs │ ├── frmAttendanceManager.cs │ ├── frmAttendanceManager.resx │ ├── frmAttendanceStatDay.Designer.cs │ ├── frmAttendanceStatDay.cs │ ├── frmAttendanceStatDay.resx │ ├── frmAttendanceStatMan.Designer.cs │ ├── frmAttendanceStatMan.cs │ ├── frmAttendanceStatMan.resx │ ├── frmAttendanceStatMonth.Designer.cs │ ├── frmAttendanceStatMonth.cs │ ├── frmAttendanceStatMonth.resx │ ├── frmAttendanceStatMonthTypeDay.Designer.cs │ ├── frmAttendanceStatMonthTypeDay.cs │ ├── frmAttendanceStatMonthTypeDay.resx │ ├── frmAttendanceStatSelf.Designer.cs │ ├── frmAttendanceStatSelf.cs │ ├── frmAttendanceStatSelf.resx │ ├── frmAttendanceStatSelfDay.Designer.cs │ ├── frmAttendanceStatSelfDay.cs │ ├── frmAttendanceStatSelfDay.resx │ ├── frmAttendanceStatSelfDetail.Designer.cs │ ├── frmAttendanceStatSelfDetail.cs │ ├── frmAttendanceStatSelfDetail.resx │ ├── frmAttendanceStatUser.Designer.cs │ ├── frmAttendanceStatUser.cs │ ├── frmAttendanceStatUser.resx │ ├── frmAttendanceStatistics.Designer.cs │ ├── frmAttendanceStatistics.cs │ └── frmAttendanceStatistics.resx ├── AttendanceManager.cs ├── AttendanceWorkDate.cs ├── AutofacConfig.cs ├── AutomapperConfig.cs ├── CostCenter │ ├── frmCostCenter.Designer.cs │ ├── frmCostCenter.cs │ ├── frmCostCenter.resx │ ├── frmCostCenterCreate.Designer.cs │ ├── frmCostCenterCreate.cs │ ├── frmCostCenterCreate.resx │ ├── frmCostCenterDetail.Designer.cs │ ├── frmCostCenterDetail.cs │ ├── frmCostCenterDetail.resx │ ├── frmCostCenterFX.Designer.cs │ ├── frmCostCenterFX.cs │ ├── frmCostCenterFX.resx │ ├── frmCostCenterFXDetail.Designer.cs │ ├── frmCostCenterFXDetail.cs │ ├── frmCostCenterFXDetail.resx │ ├── frmCostTemplet.Designer.cs │ ├── frmCostTemplet.cs │ ├── frmCostTemplet.resx │ ├── frmCostTempletCreate.Designer.cs │ ├── frmCostTempletCreate.cs │ ├── frmCostTempletCreate.resx │ ├── frmCostTempletDetail.Designer.cs │ ├── frmCostTempletDetail.cs │ ├── frmCostTempletDetail.resx │ ├── frmRBCostCenter.Designer.cs │ ├── frmRBCostCenter.cs │ └── frmRBCostCenter.resx ├── DataCheckPoplist.cs ├── DataGridview.cs ├── DataGridviewbyUser.cs ├── Department │ ├── frmDepAssignUser.Designer.cs │ ├── frmDepAssignUser.cs │ ├── frmDepAssignUser.resx │ ├── frmDepartment.Designer.cs │ ├── frmDepartment.cs │ ├── frmDepartment.resx │ ├── frmDepartmentCreate.Designer.cs │ ├── frmDepartmentCreate.cs │ ├── frmDepartmentCreate.resx │ ├── frmDepartmentDetail.Designer.cs │ ├── frmDepartmentDetail.cs │ └── frmDepartmentDetail.resx ├── DepartmentMode.cs ├── EuserInfo.cs ├── FileUp │ ├── frmFile.Designer.cs │ ├── frmFile.cs │ ├── frmFile.resx │ ├── frmFileDetail.Designer.cs │ ├── frmFileDetail.cs │ └── frmFileDetail.resx ├── Im │ ├── frmAddConcentOrGroup.Designer.cs │ ├── frmAddConcentOrGroup.cs │ ├── frmAddConcentOrGroup.resx │ ├── frmConcent.Designer.cs │ ├── frmConcent.cs │ └── frmConcent.resx ├── Layout │ ├── CheckOrCC.Designer.cs │ ├── CheckOrCC.cs │ ├── CheckOrCC.resx │ ├── EditUserInfoLayout.Designer.cs │ ├── EditUserInfoLayout.cs │ ├── EditUserInfoLayout.resx │ ├── ImageButton.Designer.cs │ ├── ImageButton.cs │ ├── ImageButton.resx │ ├── LeftPage.Designer.cs │ ├── LeftPage.cs │ ├── LeftPage.resx │ ├── MenuTitle.Designer.cs │ ├── MenuTitle.cs │ ├── MenuTitle.resx │ ├── RefuseDialog.Designer.cs │ ├── RefuseDialog.cs │ ├── RefuseDialog.resx │ ├── SwipeDeleteControl.Designer.cs │ ├── SwipeDeleteControl.cs │ ├── SwipeDeleteControl.resx │ ├── Title.Designer.cs │ ├── Title.cs │ ├── Title.resx │ ├── frmATFootLayout.Designer.cs │ ├── frmATFootLayout.cs │ ├── frmATFootLayout.resx │ ├── frmATStatSelfDetailDayLayout.Designer.cs │ ├── frmATStatSelfDetailDayLayout.cs │ ├── frmATStatSelfDetailDayLayout.resx │ ├── frmATStatSelfDetailTypeLayout.Designer.cs │ ├── frmATStatSelfDetailTypeLayout.cs │ ├── frmATStatSelfDetailTypeLayout.resx │ ├── frmATStatisticsDayLayout.Designer.cs │ ├── frmATStatisticsDayLayout.cs │ ├── frmATStatisticsDayLayout.resx │ ├── frmATUserLayout.Designer.cs │ ├── frmATUserLayout.cs │ ├── frmATUserLayout.resx │ ├── frmATWorkRecordLayout.Designer.cs │ ├── frmATWorkRecordLayout.cs │ ├── frmATWorkRecordLayout.resx │ ├── frmAddUser1Layout.Designer.cs │ ├── frmAddUser1Layout.cs │ ├── frmAddUser1Layout.resx │ ├── frmAddUserLayout.Designer.cs │ ├── frmAddUserLayout.cs │ ├── frmAddUserLayout.resx │ ├── frmAttendanceMainDetailLayout.Designer.cs │ ├── frmAttendanceMainDetailLayout.cs │ ├── frmAttendanceMainDetailLayout.resx │ ├── frmAttendanceMainLayout.Designer.cs │ ├── frmAttendanceMainLayout.cs │ ├── frmAttendanceMainLayout.resx │ ├── frmAttendanceMainLayoutDialog.Designer.cs │ ├── frmAttendanceMainLayoutDialog.cs │ ├── frmAttendanceMainLayoutDialog.resx │ ├── frmAttendanceManagerLayout.Designer.cs │ ├── frmAttendanceManagerLayout.cs │ ├── frmAttendanceManagerLayout.resx │ ├── frmAttendanceRecordLayout.Designer.cs │ ├── frmAttendanceRecordLayout.cs │ ├── frmAttendanceRecordLayout.resx │ ├── frmAttendanceStatDayLayout.Designer.cs │ ├── frmAttendanceStatDayLayout.cs │ ├── frmAttendanceStatDayLayout.resx │ ├── frmAttendanceStatSelfLayout.Designer.cs │ ├── frmAttendanceStatSelfLayout.cs │ ├── frmAttendanceStatSelfLayout.resx │ ├── frmAttendanceStatisticsLayout.Designer.cs │ ├── frmAttendanceStatisticsLayout.cs │ ├── frmAttendanceStatisticsLayout.resx │ ├── frmCCSearchLayout.Designer.cs │ ├── frmCCSearchLayout.cs │ ├── frmCCSearchLayout.resx │ ├── frmConsumption1Layout.Designer.cs │ ├── frmConsumption1Layout.cs │ ├── frmConsumption1Layout.resx │ ├── frmConsumptionLayout.Designer.cs │ ├── frmConsumptionLayout.cs │ ├── frmConsumptionLayout.resx │ ├── frmCostCenterLayout.Designer.cs │ ├── frmCostCenterLayout.cs │ ├── frmCostCenterLayout.resx │ ├── frmCostTempletLayout.Designer.cs │ ├── frmCostTempletLayout.cs │ ├── frmCostTempletLayout.resx │ ├── frmDepAssignUserLayout.Designer.cs │ ├── frmDepAssignUserLayout.cs │ ├── frmDepAssignUserLayout.resx │ ├── frmDepartmentLayout.Designer.cs │ ├── frmDepartmentLayout.cs │ ├── frmDepartmentLayout.resx │ ├── frmDepartmentModeLayout.Designer.cs │ ├── frmDepartmentModeLayout.cs │ ├── frmDepartmentModeLayout.resx │ ├── frmDetailFootbarLayout.Designer.cs │ ├── frmDetailFootbarLayout.cs │ ├── frmDetailFootbarLayout.resx │ ├── frmFileUpLayout.Designer.cs │ ├── frmFileUpLayout.cs │ ├── frmFileUpLayout.resx │ ├── frmFileUpLayout1.Designer.cs │ ├── frmFileUpLayout1.cs │ ├── frmFileUpLayout1.resx │ ├── frmGroupLayout.Designer.cs │ ├── frmGroupLayout.cs │ ├── frmGroupLayout.resx │ ├── frmLeaveLayout.Designer.cs │ ├── frmLeaveLayout.cs │ ├── frmLeaveLayout.resx │ ├── frmRBCreateLayout.Designer.cs │ ├── frmRBCreateLayout.cs │ ├── frmRBCreateLayout.resx │ ├── frmRBModelLayout.Designer.cs │ ├── frmRBModelLayout.cs │ ├── frmRBModelLayout.resx │ ├── frmRBROWLayout.Designer.cs │ ├── frmRBROWLayout.cs │ ├── frmRBROWLayout.resx │ ├── frmRBTypeLayout.Designer.cs │ ├── frmRBTypeLayout.cs │ ├── frmRBTypeLayout.resx │ ├── frmRefuseLayout.Designer.cs │ ├── frmRefuseLayout.cs │ ├── frmRefuseLayout.resx │ ├── frmUserLayout.Designer.cs │ ├── frmUserLayout.cs │ ├── frmUserLayout.resx │ ├── frmUserLayout1.Designer.cs │ ├── frmUserLayout1.cs │ └── frmUserLayout1.resx ├── Leave │ ├── frmLeaveCreate.Designer.cs │ ├── frmLeaveCreate.cs │ ├── frmLeaveCreate.resx │ ├── frmLeaveDetail.Designer.cs │ ├── frmLeaveDetail.cs │ └── frmLeaveDetail.resx ├── MobileGlobal.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RB │ ├── frmRBCreate.Designer.cs │ ├── frmRBCreate.cs │ ├── frmRBCreate.resx │ ├── frmRBDetail.Designer.cs │ ├── frmRBDetail.cs │ ├── frmRBDetail.resx │ ├── frmRBEdit.Designer.cs │ ├── frmRBEdit.cs │ ├── frmRBEdit.resx │ ├── frmRBRows.Designer.cs │ ├── frmRBRows.cs │ ├── frmRBRows.resx │ ├── frmRTypeChoose.Designer.cs │ ├── frmRTypeChoose.cs │ ├── frmRTypeChoose.resx │ ├── frmRTypeTempChoose.Designer.cs │ ├── frmRTypeTempChoose.cs │ ├── frmRTypeTempChoose.resx │ ├── frmRTypeTempCreate.Designer.cs │ ├── frmRTypeTempCreate.cs │ ├── frmRTypeTempCreate.resx │ ├── frmRTypeTemplate.Designer.cs │ ├── frmRTypeTemplate.cs │ ├── frmRTypeTemplate.resx │ ├── frmRowsCreate.Designer.cs │ ├── frmRowsCreate.cs │ └── frmRowsCreate.resx ├── SmoONE.UI.csproj ├── UserDetails.cs ├── UserInfo │ ├── frmChangePWD.Designer.cs │ ├── frmChangePWD.cs │ ├── frmChangePWD.resx │ ├── frmCheckOrCCTo.Designer.cs │ ├── frmCheckOrCCTo.cs │ ├── frmCheckOrCCTo.resx │ ├── frmRegister.Designer.cs │ ├── frmRegister.cs │ ├── frmRegister.resx │ ├── frmRegisterTel.Designer.cs │ ├── frmRegisterTel.cs │ ├── frmRegisterTel.resx │ ├── frmUser.Designer.cs │ ├── frmUser.cs │ ├── frmUser.resx │ ├── frmUserDetail.Designer.cs │ ├── frmUserDetail.cs │ ├── frmUserDetail.resx │ ├── frmVerificationCode.Designer.cs │ ├── frmVerificationCode.cs │ └── frmVerificationCode.resx ├── UserSex.cs ├── Work │ ├── frmCCTo.Designer.cs │ ├── frmCCTo.cs │ ├── frmCCTo.resx │ ├── frmCheck.Designer.cs │ ├── frmCheck.cs │ ├── frmCheck.resx │ ├── frmCreated.Designer.cs │ ├── frmCreated.cs │ ├── frmCreated.resx │ ├── frmWork.Designer.cs │ ├── frmWork.cs │ └── frmWork.resx ├── app.config ├── bin │ └── Debug │ │ └── Resources │ │ ├── Document │ │ ├── 1.rar │ │ ├── SombilerApp.ppt │ │ ├── 成绩单.doc │ │ └── 资产.xls │ │ └── Image │ │ ├── Attendance.png │ │ ├── BJ.png │ │ ├── BJB.png │ │ ├── Barcode.png │ │ ├── CB.png │ │ ├── CC.png │ │ ├── CCFX.png │ │ ├── CF.png │ │ ├── Camera.png │ │ ├── CameraOffline.png │ │ ├── Department.png │ │ ├── Excel.png │ │ ├── FZ.png │ │ ├── FileUp.png │ │ ├── GL.png │ │ ├── HD.png │ │ ├── IM.png │ │ ├── JT.png │ │ ├── JY.png │ │ ├── KD.png │ │ ├── Leave.png │ │ ├── MenuItem.png │ │ ├── Phone.png │ │ ├── QT.png │ │ ├── RB.png │ │ ├── Signature.png │ │ ├── TC.png │ │ ├── TXF.png │ │ ├── VoiceRecorder.png │ │ ├── VoiceRecorderOffline.png │ │ ├── WX.png │ │ ├── WY.png │ │ ├── XZ.png │ │ ├── YJ.png │ │ ├── YW.png │ │ ├── ZS.png │ │ ├── action1.png │ │ ├── action2.png │ │ ├── action3.png │ │ ├── add.png │ │ ├── baoxiaodan.png │ │ ├── boy.png │ │ ├── bumen.png │ │ ├── bumenicon.png │ │ ├── ccmuban.png │ │ ├── chaosong.png │ │ ├── chengbeng.png │ │ ├── chengbenguanli.png │ │ ├── girl.png │ │ ├── gongzuozhong1.png │ │ ├── gongzuozhong2.png │ │ ├── group.png │ │ ├── jinxingzhong.png │ │ ├── jujue.png │ │ ├── kaoqin.png │ │ ├── kaoqinguanli.png │ │ ├── kaoqintongji.png │ │ ├── lianxiren.png │ │ ├── logon.png │ │ ├── logon1.gif │ │ ├── logon1.png │ │ ├── me.png │ │ ├── me2.png │ │ ├── muban.png │ │ ├── next.png │ │ ├── ppt.png │ │ ├── renyuanfenpei.png │ │ ├── search.png │ │ ├── shangban1.png │ │ ├── shangban2.png │ │ ├── shenpi.png │ │ ├── tijiao.png │ │ ├── wancheng.png │ │ ├── wodekaoqinlishi.png │ │ ├── wofaqi.png │ │ ├── word.png │ │ ├── work.png │ │ ├── work2.png │ │ ├── xiaban1.png │ │ ├── xiaban2.png │ │ ├── xiaofeimingxi.png │ │ ├── xiaofeimuban.png │ │ ├── xiaoxi.png │ │ └── zip.png ├── frmGenerateQRcode.Designer.cs ├── frmGenerateQRcode.cs ├── frmGenerateQRcode.resx ├── frmHelp.Designer.cs ├── frmHelp.cs ├── frmHelp.resx ├── frmLogon.Designer.cs ├── frmLogon.cs ├── frmLogon.resx ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx ├── frmSetting.Designer.cs ├── frmSetting.cs ├── frmSetting.resx └── packages.config ├── SmoONE.sln └── SmoONE_2010.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/.gitignore -------------------------------------------------------------------------------- /Dll/TopSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Dll/TopSdk.dll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/README.md -------------------------------------------------------------------------------- /Resource/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Resource/code.gif -------------------------------------------------------------------------------- /Resource/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Resource/down.gif -------------------------------------------------------------------------------- /Resource/logon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Resource/logon.gif -------------------------------------------------------------------------------- /Resource/start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Resource/start.gif -------------------------------------------------------------------------------- /Source/SmoONE.Application/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/App.config -------------------------------------------------------------------------------- /Source/SmoONE.Application/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/Helper.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/IServices/IAttendanceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/IServices/IAttendanceService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/IServices/ICGroupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/IServices/ICGroupService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/IServices/IContactService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/IServices/IContactService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/IServices/ICostCenterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/IServices/ICostCenterService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/IServices/IDepartmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/IServices/IDepartmentService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/IServices/ILeaveService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/IServices/ILeaveService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/IServices/IReimbursementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/IServices/IReimbursementService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/IServices/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/IServices/IUserService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/Services/AttendanceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/Services/AttendanceService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/Services/CGroupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/Services/CGroupService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/Services/ContactService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/Services/ContactService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/Services/CostCenterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/Services/CostCenterService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/Services/DepartmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/Services/DepartmentService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/Services/LeaveService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/Services/LeaveService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/Services/ReimbursementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/Services/ReimbursementService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/Services/UserService.cs -------------------------------------------------------------------------------- /Source/SmoONE.Application/SmoONE.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/SmoONE.Application.csproj -------------------------------------------------------------------------------- /Source/SmoONE.Application/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Application/packages.config -------------------------------------------------------------------------------- /Source/SmoONE.CommLib/DESEncrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.CommLib/DESEncrypt.cs -------------------------------------------------------------------------------- /Source/SmoONE.CommLib/DataAnnotationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.CommLib/DataAnnotationHelper.cs -------------------------------------------------------------------------------- /Source/SmoONE.CommLib/ModelValidationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.CommLib/ModelValidationError.cs -------------------------------------------------------------------------------- /Source/SmoONE.CommLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.CommLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.CommLib/ReturnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.CommLib/ReturnInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.CommLib/SmoONE.CommLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.CommLib/SmoONE.CommLib.csproj -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/AttendanceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/AttendanceType.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/IsActive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/IsActive.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/IsOutOfRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/IsOutOfRange.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/L_Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/L_Status.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/RB_Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/RB_Status.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/Sex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/Sex.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/StatisticsTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/StatisticsTime.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/StatisticsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/StatisticsType.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/TimeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/TimeType.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/Week.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/Week.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/WorkOrRest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/WorkOrRest.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Enum/WorkTimeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Enum/WorkTimeType.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/IEntity.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/ALInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/ALInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/ATInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/ATInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/AT_CDInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/AT_CDInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/CCInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/CCInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/CCTTInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/CCTTInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/CGroupInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/CGroupInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/ContactInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/ContactInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/DepInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/DepInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/LeaveInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/LeaveInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/OLInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/OLInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/RBInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/RBInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/RBRTTInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/RBRTTInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/RB_RowsInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/RB_RowsInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/InputDTO/UserInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/InputDTO/UserInputDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/ALDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/ALDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/ALStatisticsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/ALStatisticsDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/ALStatisticsItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/ALStatisticsItems.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/ALStatisticsItemsDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/ALStatisticsItemsDetailDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/ATCDDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/ATCDDetailDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/ATCDDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/ATCDDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/ATDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/ATDetailDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/ATDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/ATDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/CCDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/CCDetailDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/CCDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/CCDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/CC_Type_TemplateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/CC_Type_TemplateDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/CGroupDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/CGroupDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/ContactDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/ContactDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/DailyResultDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/DailyResultDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/DailyStatisticsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/DailyStatisticsDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/DepDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/DepDetailDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/DepartmentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/DepartmentDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/Items_ALDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/Items_ALDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/LeaveDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/LeaveDetailDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/LeaveDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/LeaveDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/MonthlyResultDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/MonthlyResultDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/MonthlyStatisticsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/MonthlyStatisticsDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/OLDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/OLDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/OLStatisticsDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/OLStatisticsDetailDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/RBDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/RBDetailDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/RB_RType_TemplateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/RB_RType_TemplateDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/RB_RowsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/RB_RowsDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/ReimbursementDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/ReimbursementDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/ResultInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/ResultInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/UserDepDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/UserDepDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/UserDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/UserDetailDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/UserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/UserDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/OutputDTO/WorkTimeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/OutputDTO/WorkTimeDto.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/ResultInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/ResultInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.DTOs/SmoONE.DTOs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.DTOs/SmoONE.DTOs.csproj -------------------------------------------------------------------------------- /Source/SmoONE.Domain/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/App.config -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Attendance/AT_CustomDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Attendance/AT_CustomDate.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Attendance/AT_UserLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Attendance/AT_UserLog.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Attendance/AttendanceLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Attendance/AttendanceLog.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Attendance/AttendanceScheduling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Attendance/AttendanceScheduling.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Attendance/AttendanceTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Attendance/AttendanceTemplate.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Attendance/DailyResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Attendance/DailyResult.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Attendance/DailyStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Attendance/DailyStatistics.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Attendance/MonthlyResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Attendance/MonthlyResult.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Attendance/MonthlyStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Attendance/MonthlyStatistics.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Attendance/OL_LogDateList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Attendance/OL_LogDateList.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Attendance/OvertimeLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Attendance/OvertimeLog.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Contact/CGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Contact/CGroup.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Contact/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Contact/Contact.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/CostCenter/CC_Type_Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/CostCenter/CC_Type_Template.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/CostCenter/CostCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/CostCenter/CostCenter.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/CostCenter/CostCenter_Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/CostCenter/CostCenter_Type.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Leave/Leave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Leave/Leave.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Leave/LeaveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Leave/LeaveType.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Reimbursement/RB_RType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Reimbursement/RB_RType.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Reimbursement/RB_RType_Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Reimbursement/RB_RType_Template.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Reimbursement/RB_Rows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Reimbursement/RB_Rows.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/Reimbursement/Reimbursement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/Reimbursement/Reimbursement.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/User/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/User/Department.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/User/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/User/Log.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/User/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/User/Menu.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/User/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/User/Role.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/User/RoleMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/User/RoleMenu.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/User/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/User/User.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/User/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/User/UserRole.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Entity/User/ValidateCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Entity/User/ValidateCode.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IAggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IAggregateRoot.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IEntity.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IAT_CustomDateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IAT_CustomDateRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IAT_UserLogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IAT_UserLogRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IAttendanceLogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IAttendanceLogRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IAttendanceSchedulingRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IAttendanceSchedulingRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IAttendanceTemplateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IAttendanceTemplateRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/ICC_Type_TemplateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/ICC_Type_TemplateRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/ICGroupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/ICGroupRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IContactRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IContactRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/ICostCenterRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/ICostCenterRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/ICostCenter_TypeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/ICostCenter_TypeRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IDailyResultRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IDailyResultRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IDailyStatisticsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IDailyStatisticsRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IDepartmentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IDepartmentRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/ILeaveRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/ILeaveRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/ILeaveTypeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/ILeaveTypeRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/ILogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/ILogRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IMenuRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IMenuRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IMonthlyResultRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IMonthlyResultRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IMonthlyStatisticsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IMonthlyStatisticsRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IOvertimeLogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IOvertimeLogRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IRB_RowsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IRB_RowsRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IRB_TypeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IRB_TypeRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IRB_Type_TemplateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IRB_Type_TemplateRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IReimbursementRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IReimbursementRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IRoleMenuRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IRoleMenuRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IRoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IRoleRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IUserRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IUserRoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IUserRoleRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/IRepository/IValidateCodeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/IRepository/IValidateCodeRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.Domain/SmoONE.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/SmoONE.Domain.csproj -------------------------------------------------------------------------------- /Source/SmoONE.Domain/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Domain/packages.config -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/App.config -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Configuration/AttendanceSchedulingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Configuration/AttendanceSchedulingConfiguration.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Configuration/AttendanceTemplateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Configuration/AttendanceTemplateConfiguration.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Configuration/CostCenterConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Configuration/CostCenterConfiguration.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Configuration/DepartmentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Configuration/DepartmentConfiguration.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Configuration/LeaveConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Configuration/LeaveConfiguration.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Configuration/RB_RowsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Configuration/RB_RowsConfiguration.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Configuration/RB_Type_TemplateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Configuration/RB_Type_TemplateConfiguration.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Configuration/ReimbursementConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Configuration/ReimbursementConfiguration.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/DatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/DatabaseInitializer.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/IDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/IDbContext.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/IUnitOfWork.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201612290651353_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201612290651353_Init.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201612290651353_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201612290651353_Init.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201612290651353_Init.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201612290651353_Init.resx -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201703060726029_Attendance.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201703060726029_Attendance.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201703060726029_Attendance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201703060726029_Attendance.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201703060726029_Attendance.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201703060726029_Attendance.resx -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201710240738119_AddGestures.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201710240738119_AddGestures.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201710240738119_AddGestures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201710240738119_AddGestures.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201710240738119_AddGestures.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201710240738119_AddGestures.resx -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201801110211362_AddIM.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201801110211362_AddIM.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201801110211362_AddIM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201801110211362_AddIM.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/201801110211362_AddIM.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/201801110211362_AddIM.resx -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Migrations/Configuration.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/SmoONE.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/SmoONE.Infrastructure.csproj -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/SmoONEDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/SmoONEDbContext.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/UnitOfWork.cs -------------------------------------------------------------------------------- /Source/SmoONE.Infrastructure/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Infrastructure/packages.config -------------------------------------------------------------------------------- /Source/SmoONE.Repository/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/App.config -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Attendance/AT_CustomDateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Attendance/AT_CustomDateRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Attendance/AT_UserLogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Attendance/AT_UserLogRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Attendance/AttendanceLogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Attendance/AttendanceLogRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Attendance/AttendanceSchedulingRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Attendance/AttendanceSchedulingRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Attendance/AttendanceTemplateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Attendance/AttendanceTemplateRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Attendance/DailyResultRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Attendance/DailyResultRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Attendance/DailyStatisticsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Attendance/DailyStatisticsRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Attendance/MonthlyResultRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Attendance/MonthlyResultRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Attendance/MonthlyStatisticsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Attendance/MonthlyStatisticsRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Attendance/OvertimeLogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Attendance/OvertimeLogRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/BaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/BaseRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Contact/CGroupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Contact/CGroupRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Contact/ContactRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Contact/ContactRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/CostCenter/CC_Type_TemplateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/CostCenter/CC_Type_TemplateRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/CostCenter/CostCenterRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/CostCenter/CostCenterRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/CostCenter/CostCenter_TypeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/CostCenter/CostCenter_TypeRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Leave/LeaveRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Leave/LeaveRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Leave/LeaveTypeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Leave/LeaveTypeRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Reimbursement/RB_RowsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Reimbursement/RB_RowsRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Reimbursement/RB_TypeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Reimbursement/RB_TypeRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Reimbursement/RB_Type_TemplateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Reimbursement/RB_Type_TemplateRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/Reimbursement/ReimbursementRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/Reimbursement/ReimbursementRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/SmoONE.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/SmoONE.Repository.csproj -------------------------------------------------------------------------------- /Source/SmoONE.Repository/User/DepartmentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/User/DepartmentRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/User/LogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/User/LogRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/User/MenuRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/User/MenuRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/User/RoleMenuRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/User/RoleMenuRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/User/RoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/User/RoleRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/User/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/User/UserRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/User/UserRoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/User/UserRoleRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/User/ValidateCodeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/User/ValidateCodeRepository.cs -------------------------------------------------------------------------------- /Source/SmoONE.Repository/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.Repository/packages.config -------------------------------------------------------------------------------- /Source/SmoONE.StatisticsService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.StatisticsService/App.config -------------------------------------------------------------------------------- /Source/SmoONE.StatisticsService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.StatisticsService/Program.cs -------------------------------------------------------------------------------- /Source/SmoONE.StatisticsService/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.StatisticsService/ProjectInstaller.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.StatisticsService/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.StatisticsService/ProjectInstaller.cs -------------------------------------------------------------------------------- /Source/SmoONE.StatisticsService/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.StatisticsService/ProjectInstaller.resx -------------------------------------------------------------------------------- /Source/SmoONE.StatisticsService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.StatisticsService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.StatisticsService/SmoONE.StatisticsService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.StatisticsService/SmoONE.StatisticsService.csproj -------------------------------------------------------------------------------- /Source/SmoONE.StatisticsService/StatisticsService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.StatisticsService/StatisticsService.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.StatisticsService/StatisticsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.StatisticsService/StatisticsService.cs -------------------------------------------------------------------------------- /Source/SmoONE.StatisticsService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.StatisticsService/packages.config -------------------------------------------------------------------------------- /Source/SmoONE.UI/ATAddressDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/ATAddressDistance.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/ATMainPicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/ATMainPicture.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/ATMainState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/ATMainState.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/ATStatSelfDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/ATStatSelfDetail.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmATGPSEdit.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmATGPSEdit.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmATGPSEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmATGPSEdit.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmATGPSEdit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmATGPSEdit.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmATUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmATUser.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmATUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmATUser.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmATUser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmATUser.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceCalendarSetting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceCalendarSetting.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceCalendarSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceCalendarSetting.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceCalendarSetting.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceCalendarSetting.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceCreate.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceCreate.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceCreate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceCreate.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceDate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceDate.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceDate.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceDate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceDate.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceMain.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceMain.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceMain.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceMainReason.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceMainReason.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceMainReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceMainReason.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceMainReason.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceMainReason.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceManager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceManager.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceManager.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceManager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceManager.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatDay.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatDay.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatDay.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatDay.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatDay.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatMan.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatMan.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatMan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatMan.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatMan.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatMan.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatMonth.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatMonth.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatMonth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatMonth.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatMonth.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatMonth.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatMonthTypeDay.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatMonthTypeDay.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatMonthTypeDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatMonthTypeDay.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatMonthTypeDay.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatMonthTypeDay.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatSelf.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatSelf.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatSelf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatSelf.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatSelf.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatSelf.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDay.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDay.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDay.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDay.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDay.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDetail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDetail.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDetail.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDetail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatSelfDetail.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatUser.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatUser.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatUser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatUser.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatistics.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatistics.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatistics.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Attendance/frmAttendanceStatistics.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Attendance/frmAttendanceStatistics.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/AttendanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/AttendanceManager.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/AttendanceWorkDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/AttendanceWorkDate.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/AutofacConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/AutofacConfig.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/AutomapperConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/AutomapperConfig.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenter.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenter.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenter.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterCreate.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterCreate.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterCreate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterCreate.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterDetail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterDetail.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterDetail.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterDetail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterDetail.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterFX.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterFX.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterFX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterFX.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterFX.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterFX.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterFXDetail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterFXDetail.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterFXDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterFXDetail.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostCenterFXDetail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostCenterFXDetail.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostTemplet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostTemplet.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostTemplet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostTemplet.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostTemplet.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostTemplet.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostTempletCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostTempletCreate.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostTempletCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostTempletCreate.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostTempletCreate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostTempletCreate.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostTempletDetail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostTempletDetail.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostTempletDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostTempletDetail.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmCostTempletDetail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmCostTempletDetail.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmRBCostCenter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmRBCostCenter.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmRBCostCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmRBCostCenter.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/CostCenter/frmRBCostCenter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/CostCenter/frmRBCostCenter.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/DataCheckPoplist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/DataCheckPoplist.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/DataGridview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/DataGridview.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/DataGridviewbyUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/DataGridviewbyUser.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepAssignUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepAssignUser.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepAssignUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepAssignUser.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepAssignUser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepAssignUser.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepartment.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepartment.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepartment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepartment.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepartment.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepartment.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepartmentCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepartmentCreate.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepartmentCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepartmentCreate.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepartmentCreate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepartmentCreate.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepartmentDetail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepartmentDetail.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepartmentDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepartmentDetail.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Department/frmDepartmentDetail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Department/frmDepartmentDetail.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/DepartmentMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/DepartmentMode.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/EuserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/EuserInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/FileUp/frmFile.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/FileUp/frmFile.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/FileUp/frmFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/FileUp/frmFile.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/FileUp/frmFile.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/FileUp/frmFile.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/FileUp/frmFileDetail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/FileUp/frmFileDetail.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/FileUp/frmFileDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/FileUp/frmFileDetail.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/FileUp/frmFileDetail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/FileUp/frmFileDetail.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Im/frmAddConcentOrGroup.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Im/frmAddConcentOrGroup.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Im/frmAddConcentOrGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Im/frmAddConcentOrGroup.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Im/frmAddConcentOrGroup.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Im/frmAddConcentOrGroup.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Im/frmConcent.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Im/frmConcent.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Im/frmConcent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Im/frmConcent.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Im/frmConcent.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Im/frmConcent.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/CheckOrCC.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/CheckOrCC.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/CheckOrCC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/CheckOrCC.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/CheckOrCC.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/CheckOrCC.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/EditUserInfoLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/EditUserInfoLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/EditUserInfoLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/EditUserInfoLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/EditUserInfoLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/EditUserInfoLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/ImageButton.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/ImageButton.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/ImageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/ImageButton.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/ImageButton.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/ImageButton.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/LeftPage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/LeftPage.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/LeftPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/LeftPage.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/LeftPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/LeftPage.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/MenuTitle.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/MenuTitle.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/MenuTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/MenuTitle.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/MenuTitle.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/MenuTitle.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/RefuseDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/RefuseDialog.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/RefuseDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/RefuseDialog.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/RefuseDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/RefuseDialog.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/SwipeDeleteControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/SwipeDeleteControl.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/SwipeDeleteControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/SwipeDeleteControl.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/SwipeDeleteControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/SwipeDeleteControl.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/Title.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/Title.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/Title.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/Title.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/Title.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/Title.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATFootLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATFootLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATFootLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATFootLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATFootLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATFootLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATStatSelfDetailDayLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATStatSelfDetailDayLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATStatSelfDetailDayLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATStatSelfDetailDayLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATStatSelfDetailDayLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATStatSelfDetailDayLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATStatSelfDetailTypeLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATStatSelfDetailTypeLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATStatSelfDetailTypeLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATStatSelfDetailTypeLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATStatSelfDetailTypeLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATStatSelfDetailTypeLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATStatisticsDayLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATStatisticsDayLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATStatisticsDayLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATStatisticsDayLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATStatisticsDayLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATStatisticsDayLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATUserLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATUserLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATUserLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATUserLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATUserLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATUserLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATWorkRecordLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATWorkRecordLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATWorkRecordLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATWorkRecordLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmATWorkRecordLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmATWorkRecordLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAddUser1Layout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAddUser1Layout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAddUser1Layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAddUser1Layout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAddUser1Layout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAddUser1Layout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAddUserLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAddUserLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAddUserLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAddUserLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAddUserLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAddUserLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceMainDetailLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceMainDetailLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceMainDetailLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceMainDetailLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceMainDetailLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceMainDetailLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceMainLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceMainLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceMainLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceMainLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceMainLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceMainLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceMainLayoutDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceMainLayoutDialog.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceMainLayoutDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceMainLayoutDialog.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceMainLayoutDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceMainLayoutDialog.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceManagerLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceManagerLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceManagerLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceManagerLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceManagerLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceManagerLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceRecordLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceRecordLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceRecordLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceRecordLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceRecordLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceRecordLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceStatDayLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceStatDayLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceStatDayLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceStatDayLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceStatDayLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceStatDayLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceStatSelfLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceStatSelfLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceStatSelfLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceStatSelfLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceStatSelfLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceStatSelfLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceStatisticsLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceStatisticsLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceStatisticsLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceStatisticsLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmAttendanceStatisticsLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmAttendanceStatisticsLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmCCSearchLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmCCSearchLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmCCSearchLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmCCSearchLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmCCSearchLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmCCSearchLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmConsumption1Layout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmConsumption1Layout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmConsumption1Layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmConsumption1Layout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmConsumption1Layout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmConsumption1Layout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmConsumptionLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmConsumptionLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmConsumptionLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmConsumptionLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmConsumptionLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmConsumptionLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmCostCenterLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmCostCenterLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmCostCenterLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmCostCenterLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmCostCenterLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmCostCenterLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmCostTempletLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmCostTempletLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmCostTempletLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmCostTempletLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmCostTempletLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmCostTempletLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDepAssignUserLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDepAssignUserLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDepAssignUserLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDepAssignUserLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDepAssignUserLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDepAssignUserLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDepartmentLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDepartmentLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDepartmentLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDepartmentLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDepartmentLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDepartmentLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDepartmentModeLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDepartmentModeLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDepartmentModeLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDepartmentModeLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDepartmentModeLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDepartmentModeLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDetailFootbarLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDetailFootbarLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDetailFootbarLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDetailFootbarLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmDetailFootbarLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmDetailFootbarLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmFileUpLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmFileUpLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmFileUpLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmFileUpLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmFileUpLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmFileUpLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmFileUpLayout1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmFileUpLayout1.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmFileUpLayout1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmFileUpLayout1.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmFileUpLayout1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmFileUpLayout1.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmGroupLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmGroupLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmGroupLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmGroupLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmGroupLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmGroupLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmLeaveLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmLeaveLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmLeaveLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmLeaveLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmLeaveLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmLeaveLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBCreateLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBCreateLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBCreateLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBCreateLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBCreateLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBCreateLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBModelLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBModelLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBModelLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBModelLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBModelLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBModelLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBROWLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBROWLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBROWLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBROWLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBROWLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBROWLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBTypeLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBTypeLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBTypeLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBTypeLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRBTypeLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRBTypeLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRefuseLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRefuseLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRefuseLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRefuseLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmRefuseLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmRefuseLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmUserLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmUserLayout.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmUserLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmUserLayout.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmUserLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmUserLayout.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmUserLayout1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmUserLayout1.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmUserLayout1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmUserLayout1.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Layout/frmUserLayout1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Layout/frmUserLayout1.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Leave/frmLeaveCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Leave/frmLeaveCreate.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Leave/frmLeaveCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Leave/frmLeaveCreate.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Leave/frmLeaveCreate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Leave/frmLeaveCreate.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Leave/frmLeaveDetail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Leave/frmLeaveDetail.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Leave/frmLeaveDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Leave/frmLeaveDetail.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Leave/frmLeaveDetail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Leave/frmLeaveDetail.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/MobileGlobal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/MobileGlobal.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Program.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Properties/Settings.settings -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBCreate.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBCreate.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBCreate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBCreate.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBDetail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBDetail.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBDetail.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBDetail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBDetail.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBEdit.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBEdit.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBEdit.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBEdit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBEdit.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBRows.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBRows.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBRows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBRows.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRBRows.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRBRows.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeChoose.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeChoose.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeChoose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeChoose.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeChoose.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeChoose.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeTempChoose.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeTempChoose.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeTempChoose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeTempChoose.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeTempChoose.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeTempChoose.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeTempCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeTempCreate.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeTempCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeTempCreate.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeTempCreate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeTempCreate.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeTemplate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeTemplate.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeTemplate.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRTypeTemplate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRTypeTemplate.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRowsCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRowsCreate.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRowsCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRowsCreate.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/RB/frmRowsCreate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/RB/frmRowsCreate.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/SmoONE.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/SmoONE.UI.csproj -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserDetails.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmChangePWD.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmChangePWD.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmChangePWD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmChangePWD.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmChangePWD.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmChangePWD.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmCheckOrCCTo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmCheckOrCCTo.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmCheckOrCCTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmCheckOrCCTo.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmCheckOrCCTo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmCheckOrCCTo.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmRegister.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmRegister.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmRegister.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmRegister.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmRegister.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmRegisterTel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmRegisterTel.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmRegisterTel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmRegisterTel.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmRegisterTel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmRegisterTel.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmUser.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmUser.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmUser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmUser.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmUserDetail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmUserDetail.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmUserDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmUserDetail.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmUserDetail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmUserDetail.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmVerificationCode.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmVerificationCode.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmVerificationCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmVerificationCode.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserInfo/frmVerificationCode.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserInfo/frmVerificationCode.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/UserSex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/UserSex.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmCCTo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmCCTo.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmCCTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmCCTo.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmCCTo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmCCTo.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmCheck.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmCheck.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmCheck.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmCheck.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmCheck.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmCreated.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmCreated.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmCreated.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmCreated.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmCreated.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmWork.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmWork.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmWork.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/Work/frmWork.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/Work/frmWork.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/app.config -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Document/1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Document/1.rar -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Document/SombilerApp.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Document/SombilerApp.ppt -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Document/成绩单.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Document/成绩单.doc -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Document/资产.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Document/资产.xls -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/Attendance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/Attendance.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/BJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/BJ.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/BJB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/BJB.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/Barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/Barcode.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/CB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/CB.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/CC.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/CCFX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/CCFX.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/CF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/CF.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/Camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/Camera.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/CameraOffline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/CameraOffline.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/Department.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/Department.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/Excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/Excel.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/FZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/FZ.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/FileUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/FileUp.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/GL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/GL.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/HD.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/IM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/IM.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/JT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/JT.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/JY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/JY.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/KD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/KD.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/Leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/Leave.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/MenuItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/MenuItem.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/Phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/Phone.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/QT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/QT.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/RB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/RB.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/Signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/Signature.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/TC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/TC.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/TXF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/TXF.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/VoiceRecorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/VoiceRecorder.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/VoiceRecorderOffline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/VoiceRecorderOffline.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/WX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/WX.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/WY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/WY.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/XZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/XZ.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/YJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/YJ.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/YW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/YW.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/ZS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/ZS.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/action1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/action1.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/action2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/action2.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/action3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/action3.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/add.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/baoxiaodan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/baoxiaodan.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/boy.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/bumen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/bumen.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/bumenicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/bumenicon.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/ccmuban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/ccmuban.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/chaosong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/chaosong.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/chengbeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/chengbeng.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/chengbenguanli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/chengbenguanli.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/girl.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/gongzuozhong1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/gongzuozhong1.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/gongzuozhong2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/gongzuozhong2.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/group.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/jinxingzhong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/jinxingzhong.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/jujue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/jujue.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/kaoqin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/kaoqin.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/kaoqinguanli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/kaoqinguanli.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/kaoqintongji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/kaoqintongji.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/lianxiren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/lianxiren.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/logon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/logon.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/logon1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/logon1.gif -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/logon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/logon1.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/me.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/me2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/me2.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/muban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/muban.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/next.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/ppt.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/renyuanfenpei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/renyuanfenpei.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/search.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/shangban1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/shangban1.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/shangban2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/shangban2.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/shenpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/shenpi.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/tijiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/tijiao.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/wancheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/wancheng.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/wodekaoqinlishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/wodekaoqinlishi.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/wofaqi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/wofaqi.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/word.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/work.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/work2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/work2.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/xiaban1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/xiaban1.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/xiaban2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/xiaban2.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/xiaofeimingxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/xiaofeimingxi.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/xiaofeimuban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/xiaofeimuban.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/xiaoxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/xiaoxi.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/bin/Debug/Resources/Image/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/bin/Debug/Resources/Image/zip.png -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmGenerateQRcode.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmGenerateQRcode.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmGenerateQRcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmGenerateQRcode.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmGenerateQRcode.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmGenerateQRcode.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmHelp.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmHelp.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmHelp.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmHelp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmHelp.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmLogon.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmLogon.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmLogon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmLogon.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmLogon.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmLogon.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmMain.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmMain.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmMain.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmSetting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmSetting.Designer.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmSetting.cs -------------------------------------------------------------------------------- /Source/SmoONE.UI/frmSetting.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/frmSetting.resx -------------------------------------------------------------------------------- /Source/SmoONE.UI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.UI/packages.config -------------------------------------------------------------------------------- /Source/SmoONE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE.sln -------------------------------------------------------------------------------- /Source/SmoONE_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comsmobiler/SmoONE/HEAD/Source/SmoONE_2010.sln --------------------------------------------------------------------------------