Exemple #1
0
 public RelationEventFactory(Tgnet.FootChat.Push.INotifyServiceProxy notifyServiceProxy,
                             Tgnet.FootChat.User.IUserManager userManager,
                             Tgnet.FootChat.Push.IPushManager pushManager)
 {
     _NotifyServiceProxy = notifyServiceProxy;
     _UserManager        = userManager;
     _PushManager        = pushManager;
 }
Exemple #2
0
 public FootPrintDockedEvent(
     Tgnet.FootChat.User.IUserManager userManager,
     Tgnet.FootChat.Push.IPushManager pushManager,
     INotifyServiceProxy notifyServiceProxy)
 {
     _UserManager        = userManager;
     _PushManager        = pushManager;
     _NotifyServiceProxy = notifyServiceProxy;
 }
Exemple #3
0
 public RelationEvent(
     Relation.IUserRelationService userRelationService,
     INotifyServiceProxy notifyServiceProxy,
     Tgnet.FootChat.User.IUserManager userManager,
     Tgnet.FootChat.Push.IPushManager pushManager)
 {
     _UserRelationService = userRelationService;
     _NotifyServiceProxy  = notifyServiceProxy;
     _UserManager         = userManager;
     _PushManager         = pushManager;
 }
Exemple #4
0
 public FootPrintDockedEventFactory(
     Tgnet.FootChat.User.IUserManager userManager,
     Tgnet.FootChat.Push.IPushManager pushManager,
     IMessageService messageService,
     INotifyServiceProxy notifyServiceProxy
     )
 {
     _UserManager        = userManager;
     _PushManager        = pushManager;
     _MessageService     = messageService;
     _NotifyServiceProxy = notifyServiceProxy;
 }