Esempio n. 1
0
 public CampsController(
     IPhoneService phoneService,
     IGalleryService galleryService,
     ICampService campService,
     IAddressService addressService,
     IUnitOfWork unitOfWork)
 {
     _campService    = campService;
     _unitOfWork     = unitOfWork;
     _addressService = addressService;
     _galleryService = galleryService;
     _phoneService   = phoneService;
 }
Esempio n. 2
0
 public BaseController(ICampService svc, UserManager <User> userManager)
 {
     Svc             = svc;
     Svc.UserManager = userManager;
 }
Esempio n. 3
0
 public CampController(ICampService campService, IUserImpersonationService userImpersonationService, IAuthenticationRepository authenticationRepository) : base(userImpersonationService, authenticationRepository)
 {
     _campService = campService;
 }
Esempio n. 4
0
 public CampCategoryController(ICampService svc, UserManager <User> userManager) : base(svc, userManager)
 {
 }
Esempio n. 5
0
 public LejrController(ICampService cs)
 {
     _cs = cs;
 }
Esempio n. 6
0
 public CampController(ICampService campService, IUserImpersonationService userImpersonationService) : base(userImpersonationService)
 {
     _campService = campService;
 }
Esempio n. 7
0
 public CampController(ICampService campService, ILogger <CampController> logger)
 {
     _logger      = logger;
     _campService = campService;
 }
Esempio n. 8
0
 public CampsController(ICampService campService)
 {
     _campService = campService;
 }
Esempio n. 9
0
 public HomeController(ICampService campService, IUnitOfWork unitOfWork)
 {
     _campService = campService;
     _unitOfWork  = unitOfWork;
 }
Esempio n. 10
0
 public DietController(ICampService svc, UserManager <User> userManager) : base(svc, userManager)
 {
 }
Esempio n. 11
0
 public BaseController(ICampService svc)
 {
     Svc = svc;
 }
Esempio n. 12
0
 public InstructorController(ICampService svc, UserManager <User> userManager) : base(svc, userManager)
 {
 }
Esempio n. 13
0
 public HomeController(ICampService svc) : base(svc)
 {
 }
Esempio n. 14
0
 public ObjectTypeController(ICampService svc, UserManager <User> userManager) : base(svc, userManager)
 {
 }