/// <summary> /// Constructor with DI /// </summary> /// public HomeAPIController( IStaffsService staffsService ) { _staffsService = staffsService; }
public StaffsController(IStaffsService staffsService) { _staffsService = staffsService; menu = _initialService.GetMenuPermissionForLoginUser("Staffs"); ViewBag.Menus = menu; }
public StaffsController(IStaffsService ecService, IMapper mapper, IOptions <AppSettings> appSettings) { _StaffsService = ecService; _appSettings = appSettings.Value; }