Example #1
0
 public AreaController(
     IAreaService areaService,
     ILikkleApiLogger logger)
 {
     this._areaService = areaService;
     this._apiLogger   = logger;
 }
Example #2
0
 public GroupController(
     IGroupService groupService,
     ILikkleApiLogger logger)
 {
     this._groupService = groupService;
     this._apiLogger    = logger;
 }
Example #3
0
 public UserController(
     IUserService userService,
     ILikkleApiLogger logger,
     ISubscriptionService subscriptionService,
     IGroupService groupService,
     IPhoneValidationManager phoneValidationManager)
 {
     this._userService            = userService;
     this._apiLogger              = logger;
     this._subscriptionService    = subscriptionService;
     _groupService                = groupService;
     this._phoneValidationManager = phoneValidationManager;
 }
 public ApiDocumentationController(ILikkleApiLogger logger)
 {
     this._apiLogger = logger;
 }