public RestrictedGroupConfigurationController(IRestrictedGroupConfigRepository configRepository, IRestrictedGroupRepository groupRepository,
                                               IUserMaintenanceRepository userRepo)
 {
     this.configRepository = configRepository;
     this.groupRepository  = groupRepository;
     this.userRepo         = userRepo;
 }
Esempio n. 2
0
 public SiteService(ISiteRepository siteRepo, INetworkDeviceRepository networkDeviceRepo, ISiteNotificationRepository siteNotiRepo,
                    IRestrictedGroupRepository groupRepo, IRestrictedGroupConfigRepository groupConfigRepo)
 {
     this.siteRepo          = siteRepo;
     this.networkDeviceRepo = networkDeviceRepo;
     this.siteNotiRepo      = siteNotiRepo;
     this.groupRepo         = groupRepo;
     this.groupConfigRepo   = groupConfigRepo;
 }