示例#1
0
        public TallyForm(IWorkingTimeService workingTimeService, IEmployeeService employeeService, IWorkingLocationService workingLocationService)
        {
            _workingTimeService     = workingTimeService;
            _employeeService        = employeeService;
            _workingLocationService = workingLocationService;

            InitializeComponent();
        }
示例#2
0
 public LocationForm(IWorkingLocationService workingLocationService)
 {
     _workingLocationService = workingLocationService;
     InitializeComponent();
 }