public HospitalController(IPersonService userService, IHospitalService hospitalService, IAppointmentService appointmentService, ICommonUtils commonUtils)
 {
     _userService        = userService;
     _hospitalService    = hospitalService;
     _appointmentService = appointmentService;
     _commonUtils        = commonUtils;
 }
 public SpecialityController(IHospitalService hospitalService,
                             IClinicService clinicService,
                             IShiftCenterService polyclinicService,
                             ICommonUtils commonUtils,
                             IPersonService userService,
                             IWorkContext workContext, BanobatDbContext dbContext) : base(workContext)
 {
     _hospitalService   = hospitalService;
     _clinicService     = clinicService;
     _polyclinicService = polyclinicService;
     _commonUtils       = commonUtils;
     _userService       = userService;
     _workContext       = workContext;
     _dbContext         = dbContext;
 }
예제 #3
0
        public SmushSite()
        {
            InitializeComponent();

            _utils = new Utils();
            _commonUtils = new CommonUtils();
            _smushLogic = new SmushLogic();
            _proxyHelper = new ProxyHelper();

            // Set the default output directory
            txtOutputUrl.Text = @"C:\Temp";

            lblComplete.ToggleLabel(false);
            imgTick.ToggleImage(false);
            btnInfo.ToggleButton(false);
        }
예제 #4
0
 public CommonClinicController(IAppointmentService appointmentService,
                               ICommonUtils commonUtils,
                               IHospitalService hospitalService,
                               IClinicService clinicService,
                               IWorkContext workContext,
                               IPersonService userService,
                               IClinicPersonsService clinicUsersService,
                               BanobatDbContext dbContext) : base(workContext)
 {
     _appointmentService = appointmentService;
     _commonUtils        = commonUtils;
     _hospitalService    = hospitalService;
     _clinicService      = clinicService;
     _workContext        = workContext;
     _userService        = userService;
     _clinicUsersService = clinicUsersService;
     logger     = LogManager.GetCurrentClassLogger();
     _dbContext = dbContext;
 }
 public PlaceController(IPlaceService placeService, ICommonUtils commonUtils)
 {
     _placeService = placeService;
     _commonUtils  = commonUtils;
 }
예제 #6
0
 public CommonUtilsTest()
 {
     _commonUtils = new CommonUtils();
 }
예제 #7
0
 public PharmacyController(IPharmacyRepository pharmacyRepository, ICommonUtils commonUtils)
 {
     _pharmacyRepository = pharmacyRepository;
     _commonUtils        = commonUtils;
 }
예제 #8
0
 public Utils(ICommonUtils commonUtils)
 {
     _commonUtils = commonUtils;
 }
예제 #9
0
 public Utils()
 {
     _commonUtils = new CommonUtils();
 }
예제 #10
0
 public ScheduleController(BanobatDbContext dbContext, ICommonUtils commonUtils)
 {
     _dbContext   = dbContext;
     _commonUtils = commonUtils;
 }
 public ExpertiseController(IExpertiseService expertiseService, ICommonUtils commonUtils)
 {
     _expertiseService = expertiseService;
     _commonUtils      = commonUtils;
 }
예제 #12
0
 public SmushLogic()
 {
     _utils = new Utils();
     _commonUtils = new CommonUtils();
 }