Exemplo n.º 1
0
 public AccountController(IMembershipServiceFacade membershipService,
                         IFormsAuthenticationService formsService,
                         ITravelersAroundServiceFacade taService)
     : base(taService)
 {
     _membershipService = membershipService;
     _formsService = formsService;
 }
Exemplo n.º 2
0
 public AjaxController(ITravelersAroundServiceFacade taService)
     : base(taService)
 {
 }
Exemplo n.º 3
0
 public ControllerBase(ITravelersAroundServiceFacade taService)
 {
     _taService = taService;
 }
 public MessagesController(ITravelersAroundServiceFacade taService)
     : base(taService)
 {
 }
Exemplo n.º 5
0
 public FriendsController(ITravelersAroundServiceFacade taService)
     : base(taService)
 {
 }
Exemplo n.º 6
0
 public ProfileController(ITravelersAroundServiceFacade taService)
     : base(taService)
 {
 }