Ejemplo n.º 1
0
 //Constructor
 /// <summary>
 /// Constructor Name        : AlertAPIServices
 /// Author                  : Pratik Soni
 /// Creation Date           : 27 Feb 2018
 /// Purpose                 : To create instant of APIHelper class
 /// Revision                :
 /// </summary>
 public GenericMethods(MoveManager.IMoveDetails moveDetails,
                       IResourceManagerFactory resourceManager,
                       ILogger logger)
 {
     this.moveDetails     = moveDetails;
     this.resourceManager = resourceManager;
     this.logger          = logger;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructor Name     : LogService
 /// Author               : Pratik Soni
 /// Creation Date        : 14 Feb 2017
 /// </summary>
 public WindowsService(MoveManager.IMoveDetails moveDetails,
                       AlertManager.IBookYourMove bookYourMove,
                       AlertManager.IPreMoveConfirmationNotifications preMoveConfirmationNotifications,
                       AlertManager.IBeginningOfDayOfServiceCheckIn beginningOfDayOfServiceCheckIn,
                       AlertManager.IEndOfServiceCheckIn endOfServiceCheckIn,
                       AlertManager.IFinalPaymentMade finalPaymentMade,
                       IResourceManagerFactory resourceManager,
                       ILogger logger)
 {
     InitializeComponent();
     this.moveDetails  = moveDetails;
     this.bookYourMove = bookYourMove;
     this.preMoveConfirmationNotifications = preMoveConfirmationNotifications;
     this.beginningOfDayOfServiceCheckIn   = beginningOfDayOfServiceCheckIn;
     this.endOfServiceCheckIn = endOfServiceCheckIn;
     this.finalPaymentMade    = finalPaymentMade;
     this.resourceManager     = resourceManager;
     this.logger = logger;
 }