Exemplo n.º 1
0
 public MainPageViewModel(INavigationService navigationService, IPersonService personService, ICountHours countHours, ICheckInOutService checkInOutService)
 {
     _checkInOutService = checkInOutService;
     _navigationService = navigationService;
     _personService     = personService;
     _countHours        = countHours;
 }
Exemplo n.º 2
0
 public DaysPageViewModel(INavigationService navigationService, ICheckInOutService checkInOutService)
 {
     _navigationService = navigationService;
     _checkInOutService = checkInOutService;
 }
Exemplo n.º 3
0
 public CountHours(ICheckInOutService checkInOutService)
 {
     _checkInOutService = checkInOutService;
 }
Exemplo n.º 4
0
 public CheckInOutController(ICheckInOutService checkInOutService, ITaskManagementService taskManagementService, ISearchLoggingService searchLoggingService)
 {
     _checkInOutService     = checkInOutService;
     _taskManagementService = taskManagementService;
     _searchLoggingService  = searchLoggingService;
 }
Exemplo n.º 5
0
 public CheckOutController(ICheckInOutService checkOut)
 {
     _checkOutService = checkOut;
 }
Exemplo n.º 6
0
 public SingleDayPageViewModel(ICheckInOutService checkInOutService, INavigationService navigationService)
 {
     _navigationService = navigationService;
     _checkInOutService = checkInOutService;
     CurrentDate        = DateTime.Now.Date.ToString(System.Globalization.DateTimeFormatInfo.CurrentInfo.ShortDatePattern);
 }
Exemplo n.º 7
0
 public CheckInController(ICheckInOutService checkIn)
 {
     _checkInService = checkIn;
 }
Exemplo n.º 8
0
 public CheckInOutController(ILogger <CheckInOutController> logger, ICheckInOutService checkInOutService)
 {
     _logger            = logger;
     _checkInOutService = checkInOutService;
 }