• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# IEmployeeService类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中IEmployeeService的典型用法代码示例。如果您正苦于以下问题:C# IEmployeeService类的具体用法?C# IEmployeeService怎么用?C# IEmployeeService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



IEmployeeService类属于命名空间,在下文中一共展示了IEmployeeService类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: LogController

 public LogController(IAFBService afbService, IAFBAllianceService allianceService, IAFBTeamService afbTeamService, IEmployeeService employeeService)
     : base(employeeService)
 {
     _IAFBService = afbService;
     _IAFBAllianceService = allianceService;
     _IAFBTeamService = afbTeamService;
 }
开发者ID:chanhan,项目名称:subao_bg,代码行数:7,代码来源:LogController.cs


示例2: LogController

 public LogController(ITennisService tennisService, ITennisAllianceService tennisAllianceService,INameControlService namecontrolservice, IEmployeeService employeeService)
     : base(employeeService)
 {
     _ITennisService = tennisService;
     _ITennisAllianceService = tennisAllianceService;
     _INameControlService = namecontrolservice;
 }
开发者ID:chanhan,项目名称:subao_bg,代码行数:7,代码来源:LogController.cs


示例3: AccountsController

 public AccountsController(IEmployeeService empService, IExpenseReportService rptService, Employee employee,IBudgetService budget)
 {
     employeeService = empService;
     reportService = rptService;
     this.employee = employee;
     budgetTracker = budget;
 }
开发者ID:rikilingam,项目名称:32013-Assignment2,代码行数:7,代码来源:AccountsController.cs


示例4: AddUsersViewModelFactory

 public AddUsersViewModelFactory(IEmployeeService employeeService, IRolesService rolesService, ISiteService siteService, ISiteGroupService siteGroupService)
 {
     _employeeService = employeeService;
     _rolesService = rolesService;
     _siteService = siteService;
     _siteGroupService = siteGroupService;
 }
开发者ID:mnasif786,项目名称:Business-Safe,代码行数:7,代码来源:AddUsersViewModelFactory.cs


示例5: WorldRecordingContext

        public WorldRecordingContext(ILongTimeAbsenceService longabsenceService,
            IAbsenceService absenceService,
            IWorkingModelService wmManager,
            IColouringService colorManager,
            IEmployeeService emplService,
            IStoreService storeService,
            IWorkingTimePlanningService workingTimePlanningService,
            IAbsenceTimePlanningService absenceTimePlanningService,
            IWorkingTimeRecordingService workingTimeRecordingService,
            IAbsenceTimeRecordingService absenceTimeRecordingService
            )
        {
            _EmployeeService = emplService;
            _StoreService = storeService;
            _WorkingTimePlanningService = workingTimePlanningService;
            _AbsenceTimePlanningService = absenceTimePlanningService;

            _WorkingTimeRecordingService = workingTimeRecordingService;
            _AbsenceTimeRecordingService = absenceTimeRecordingService;

            m_countryabsences = new AbsenceManager(absenceService);
            m_longabsences = new LongTimeAbsenceManager(longabsenceService);
            m_workingmodelmanager = new WorkingModelManagerNew(wmManager);
            m_colormanager = new CountryColorManager(colorManager);

            _ViewDate = DateTime.Today;
            _BeginWeekDate = DateTimeHelper.GetMonday(DateTime.Today);
            _EndWeekDate = DateTimeHelper.GetSunday(DateTime.Today);
            _ViewDate = DateTime.Today;
        }
开发者ID:5509850,项目名称:baumax,代码行数:30,代码来源:WorldRecordingContext.cs


示例6: EmployeeController

 public EmployeeController(IEmployeeService employeeService, IEmployeeViewModelFactory employeeViewModelFactory,  INewRegistrationRequestService newRegistrationRequestService, IUserService userService)
 {
     _employeeService = employeeService;
     _employeeViewModelFactory = employeeViewModelFactory;
     _newRegistrationRequestService = newRegistrationRequestService;
     _userService = userService;
 }
开发者ID:mnasif786,项目名称:Business-Safe,代码行数:7,代码来源:EmployeeController.cs


示例7: EmployeeController

 public EmployeeController(IEmployeeService employeeService, ITaxService taxService, IMapper mapper, IPathProvider pathProvider)
 {
     _employeeService = employeeService;
     _taxService = taxService;
     _mapper = mapper;
     _pathProvider = pathProvider;
 }
开发者ID:SenkaOlefir,项目名称:TestTask-Murano,代码行数:7,代码来源:EmployeeController.cs


示例8: IHTeamController

 public IHTeamController(IEmployeeService employeeService, IIceHockeyTeamService its, IIceHockeyAllianceService ias, ISourceTypeService ists)
     : base(employeeService)
 {
     _IIceHockeyTeamService = its;
     _IIceHockeyAllianceService = ias;
     _ISourceTypeService = ists;
 }
开发者ID:chanhan,项目名称:subao_bg,代码行数:7,代码来源:IHTeamController.cs


示例9: AdminController

 public AdminController(IEmailService emailService, IEmployeeService employeeservice, IProjectService projectService, ISkillSetService skillsetservice)
 {
     _projectService = projectService;
     _employeeService = employeeservice;
     _emailService = emailService;
     _skillsetservice = skillsetservice;
 }
开发者ID:Amit-khandelwal,项目名称:Amit_EmployeeFinder,代码行数:7,代码来源:AdminController.cs


示例10: EmployeeCostEntryViewModel

        public EmployeeCostEntryViewModel(
            IMessageBroker messageBroker, 
            IEmployeeCostService costService,
            IEmployeeService employeeService,
            SaveEmployeeCostCommand saveCostCommand,
            CancelCommand cancelCommand, ShowEmployeeCostCommand showListCommand
            )
        {
            this.messageBroker = messageBroker;
            this.costService = costService;
            this.employeeService = employeeService;
            ActualSaveCommand = saveCostCommand;

            CancelCommand = cancelCommand;
            ShowCostListCommand = showListCommand;
            InitializeCommands();
            NavigationCommands = new List<CommandBase>{SaveCommand,CancelCommand};
            CancelCommand.Action = broker => showListCommand.Execute(null);

            PropertiesToValidate = new List<string>()
            {
                "Date",
                "Total",
                "Details"
            };

            Employees = new ObservableCollection<Employee>(employeeService.GetAll());

            SubscribeMessages();
        }
开发者ID:antonmaju,项目名称:egg-farm-system,代码行数:30,代码来源:EmployeeCostEntryViewModel.cs


示例11: MyRiskAssessmentReviewController

 public MyRiskAssessmentReviewController(IRiskAssessmentService riskAssessmentService, IEmployeeService employeeService,
      IRiskAssessmentReviewService riskAssessmentReviewService, IReviewAuditDocumentHelper reviewAuditDocumentHelper,IFireRiskAssessmentService fireRiskAssessmentService
     , IBusinessSafeSessionManager businessSafeSessionManager, IBus bus)
     : base(riskAssessmentService, employeeService, riskAssessmentReviewService, reviewAuditDocumentHelper, fireRiskAssessmentService, businessSafeSessionManager, bus)
 {
     IsSqlReportAvailable = true;
 }
开发者ID:mnasif786,项目名称:Business-Safe,代码行数:7,代码来源:CompleteTests.cs


示例12: BBTeamController

 public BBTeamController(IEmployeeService employeeService, IBaseballTeamService its, IBaseballAllianceService ias, ISourceTypeService ists)
     : base(employeeService)
 {
     _IBaseballTeamService = its;
     _IBaseballAllianceService = ias;
     _ISourceTypeService = ists;
 }
开发者ID:chanhan,项目名称:subao_bg,代码行数:7,代码来源:BBTeamController.cs


示例13: TestCenterApiController

 public TestCenterApiController(
     [Dependency("EmployeeService")] IEmployeeService employeeService,
     [Dependency("BossService")] IEmployeeService bossService)
 {
     _employeeService = employeeService;
     _bossService = bossService;
 }
开发者ID:thedevhunter,项目名称:MiDinero-MiFuturo,代码行数:7,代码来源:TestCenterApiController.cs


示例14: LogController

 public LogController(IBasketballService basketballService, IBasketballAllianceService basketballianceservice, IBasketballTeamService basketballteamservice, IEmployeeService employeeService)
     : base(employeeService)
 {
     _IBasketballService = basketballService;
     _IBasketballAllianceService = basketballianceservice;
     _IBasketballTeamService = basketballteamservice;
 }
开发者ID:chanhan,项目名称:subao_bg,代码行数:7,代码来源:LogController.cs


示例15: FormsAuthenticationService

 public FormsAuthenticationService(HttpContextBase httpContext,
     IEmployeeService employeeService)
 {
     this._httpContext = httpContext;
     this._employeeService = employeeService;
     this._expirationTimeSpan = FormsAuthentication.Timeout;
 }
开发者ID:zraja90,项目名称:MyRentalPos,代码行数:7,代码来源:FormsAuthenticationService.cs


示例16: AssociateController

 public AssociateController(
     IMembershipService membershipService,
     IMembershipService associateMembershipService,
     IAssociateService associateService,
     IDocumentService documentService,
     IReferenceService referenceService,
     IEmployeeService employeeService,
     IProspectService prospectService,
     IPrincipal user,
     IClientProjectSharedService clientProjectSharedService,
     IIndividualService individualService,
     IRoleService roleService,
     Admin.Services.IEmailService emailService)
     : base(membershipService, associateService, user)
 {
     this.associateService = associateService;
     this.documentService = documentService;
     this.referenceService = referenceService;
     this.employeeService = employeeService;
     this.prospectService = prospectService;
     this.associateMembershipService = associateMembershipService;
     this.clientProjectSharedService = clientProjectSharedService;
     this.individualService = individualService;
     this.roleService = roleService;
     this.emailService = emailService;
 }
开发者ID:itvijaykumar,项目名称:MRTest,代码行数:26,代码来源:Sample1_Controller.cs


示例17: LogController

 public LogController(IIceHockeySchedulesService ihService, IIceHockeyAllianceService ia, IIceHockeyTeamService it, IEmployeeService employeeService)
     : base(employeeService)
 {
     _IIceHockeySchedulesService = ihService;
     _IIceHockeyAllianceService = ia;
     _IIceHockeyTeamService = it;
 }
开发者ID:chanhan,项目名称:subao_bg,代码行数:7,代码来源:LogController.cs


示例18: SupervisorController

 public SupervisorController(IEmployeeService empService, IExpenseReportService rptService, Employee employee,IBudgetService budget)
 {
     employeeService = empService;
     reportService = rptService;
     this.employee = employee;
     deptBudget = budget;
 }
开发者ID:rikilingam,项目名称:32013-Assignment2,代码行数:7,代码来源:SupervisorController.cs


示例19: ExtendedProjectService

 public ExtendedProjectService(IProjectService projectService, IEmployeeService employeeService, 
                               IEmployeeDAO employeeDataAccessObject, IProjectDAO projectDataAccessObject)
 {
     this.projectService = projectService;
     this.employeeService = employeeService;
     this.employeeDataAccessObject = employeeDataAccessObject;
     this.projectDataAccessObject = projectDataAccessObject;
 }
开发者ID:aignatovich,项目名称:MyFirstApp,代码行数:8,代码来源:ExtendedProjectService.cs


示例20: ProjectController

 public ProjectController(IProjectService projectService, IEmployeeService employeeService, 
     IExtendedProjectService extendedProjectService, IAutocompleteProjectService autocompleteProjectService)
 {
     this.extendedProjectService = extendedProjectService;
     this.employeeService = employeeService;
     this.projectService = projectService;
     this.autocompleteProjectService = autocompleteProjectService;
 }
开发者ID:aignatovich,项目名称:App,代码行数:8,代码来源:ProjectController.cs



注:本文中的IEmployeeService类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# IEncoder类代码示例发布时间:2022-05-24
下一篇:
C# IEmployeeRepository类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap