示例#1
0
        }                                             // I give up.

        public Provider(
            IAuthorizationService authorization,
            ILoggingService log,
            IControlService control,
            IDataService data,
            IBillingService billing,
            IInventoryService inventory,
            IOrderingService ordering,
            IStoreService store,
            IMailService mail,
            IPhysicalAccessService physicalAccess,
            ISchedulerService scheduler,
            IFeedbackService feedback,
            IReportingService reporting,
            IWorkerService worker,
            IProviderUtility utility,
            IDataAccessService dataAccess)
        {
            Authorization  = authorization;
            Log            = log;
            Control        = control;
            Data           = data;
            Billing        = billing;
            Inventory      = inventory;
            Ordering       = ordering;
            Store          = store;
            Mail           = mail;
            PhysicalAccess = physicalAccess;
            Scheduler      = scheduler;
            Feedback       = feedback;
            Reporting      = reporting;
            Worker         = worker;
            Utility        = utility;
            DataAccess     = dataAccess;
        }
示例#2
0
 private AccessCheck(IPhysicalAccessService physicalAccess, IClient client, IGlobalCost globalCost, bool hasActiveAccounts)
 {
     PhysicalAccess    = physicalAccess;
     Client            = client;
     GlobalCost        = globalCost;
     HasActiveAccounts = hasActiveAccounts;
 }
示例#3
0
 public ApportionmentRepository(ISessionManager mgr, IPhysicalAccessService physicalAccess) : base(mgr)
 {
     PhysicalAccess = physicalAccess;
 }
示例#4
0
 public static AccessCheck Create(IPhysicalAccessService physicalAccess, IClient client, IGlobalCost globalCost, bool hasActiveAccounts)
 {
     return(new AccessCheck(physicalAccess, client, globalCost, hasActiveAccounts));
 }
示例#5
0
 public FeedbackService(ISessionManager mgr, IPhysicalAccessService physicalAccess) : base(mgr)
 {
     PhysicalAccess = physicalAccess;
 }