Beispiel #1
0
 public EditController(IMyProfile myProfile, ISignUp signUp, ISignIn signIn)
 {
     this.signIn    = signIn;
     this.myProfile = myProfile;
     this.signUp    = signUp; ViewBag.RemoteValidation = "";
 }
 public UserController(IUser user, IMyProfile myProfile)
 {
     this.user      = user;
     this.myProfile = myProfile;
 }
 public ChatController(IMyProfile myProfile, IChat chat)
 {
     this.chat      = chat;
     this.myProfile = myProfile;
 }
 public MyProfileController(IMyProfile myProfile, IUser user, ISignIn signIn)
 {
     this.user      = user;
     this.myProfile = myProfile;
     this.signIn    = signIn;
 }
 public FeedController(IMyProfile myProfile, IFeed feed)
 {
     this.myProfile = myProfile;
     this.feed      = feed;
 }