本文整理汇总了C#中IEmployeeService类的典型用法代码示例。如果您正苦于以下问题:C# IEmployeeService类的具体用法?C# IEmployeeService怎么用?C# IEmployeeService使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
IEmployeeService类属于命名空间,在下文中一共展示了IEmployeeService类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LogController
public LogController(IAFBService afbService, IAFBAllianceService allianceService, IAFBTeamService afbTeamService, IEmployeeService employeeService)
: base(employeeService)
{
_IAFBService = afbService;
_IAFBAllianceService = allianceService;
_IAFBTeamService = afbTeamService;
}
示例2: LogController
public LogController(ITennisService tennisService, ITennisAllianceService tennisAllianceService,INameControlService namecontrolservice, IEmployeeService employeeService)
: base(employeeService)
{
_ITennisService = tennisService;
_ITennisAllianceService = tennisAllianceService;
_INameControlService = namecontrolservice;
}
示例3: AccountsController
public AccountsController(IEmployeeService empService, IExpenseReportService rptService, Employee employee,IBudgetService budget)
{
employeeService = empService;
reportService = rptService;
this.employee = employee;
budgetTracker = budget;
}
示例4: AddUsersViewModelFactory
public AddUsersViewModelFactory(IEmployeeService employeeService, IRolesService rolesService, ISiteService siteService, ISiteGroupService siteGroupService)
{
_employeeService = employeeService;
_rolesService = rolesService;
_siteService = siteService;
_siteGroupService = siteGroupService;
}
示例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;
}
示例6: EmployeeController
public EmployeeController(IEmployeeService employeeService, IEmployeeViewModelFactory employeeViewModelFactory, INewRegistrationRequestService newRegistrationRequestService, IUserService userService)
{
_employeeService = employeeService;
_employeeViewModelFactory = employeeViewModelFactory;
_newRegistrationRequestService = newRegistrationRequestService;
_userService = userService;
}
示例7: EmployeeController
public EmployeeController(IEmployeeService employeeService, ITaxService taxService, IMapper mapper, IPathProvider pathProvider)
{
_employeeService = employeeService;
_taxService = taxService;
_mapper = mapper;
_pathProvider = pathProvider;
}
示例8: IHTeamController
public IHTeamController(IEmployeeService employeeService, IIceHockeyTeamService its, IIceHockeyAllianceService ias, ISourceTypeService ists)
: base(employeeService)
{
_IIceHockeyTeamService = its;
_IIceHockeyAllianceService = ias;
_ISourceTypeService = ists;
}
示例9: AdminController
public AdminController(IEmailService emailService, IEmployeeService employeeservice, IProjectService projectService, ISkillSetService skillsetservice)
{
_projectService = projectService;
_employeeService = employeeservice;
_emailService = emailService;
_skillsetservice = skillsetservice;
}
示例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();
}
示例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;
}
示例12: BBTeamController
public BBTeamController(IEmployeeService employeeService, IBaseballTeamService its, IBaseballAllianceService ias, ISourceTypeService ists)
: base(employeeService)
{
_IBaseballTeamService = its;
_IBaseballAllianceService = ias;
_ISourceTypeService = ists;
}
示例13: TestCenterApiController
public TestCenterApiController(
[Dependency("EmployeeService")] IEmployeeService employeeService,
[Dependency("BossService")] IEmployeeService bossService)
{
_employeeService = employeeService;
_bossService = bossService;
}
示例14: LogController
public LogController(IBasketballService basketballService, IBasketballAllianceService basketballianceservice, IBasketballTeamService basketballteamservice, IEmployeeService employeeService)
: base(employeeService)
{
_IBasketballService = basketballService;
_IBasketballAllianceService = basketballianceservice;
_IBasketballTeamService = basketballteamservice;
}
示例15: FormsAuthenticationService
public FormsAuthenticationService(HttpContextBase httpContext,
IEmployeeService employeeService)
{
this._httpContext = httpContext;
this._employeeService = employeeService;
this._expirationTimeSpan = FormsAuthentication.Timeout;
}