public SendMobilePushRepository(NotificationEvent notificationEvent, ERPDATA2Context context, IConfiguration configuration)
 {
     _notificationEvent = notificationEvent;
     this.context       = context;
     this.utils         = new Utils();
     Configuration      = configuration;
 }
 public CargoRepository(ERPDATA2Context context)
 {
     this.context = context;
 }
 public AuthRepository(ERPDATA2Context context)
 {
     this.context = context;
 }
 public VersionRepository(ERPDATA2Context context)
 {
     this.context = context;
 }
Exemple #5
0
 public ClientRepository(ERPDATA2Context context)
 {
     this.context = context;
 }
Exemple #6
0
 public UserPermission(ERPDATA2Context context)
 {
     this.context = context;
 }
Exemple #7
0
        /// <summary>
        /// Get the status label by code id
        /// </summary>
        /// <param name="code"></param>
        /// <returns></returns>


        public SalesOrderRepository(ERPDATA2Context context)
        {
            this.context = context;
            this.utils   = new Utils();
        }
Exemple #8
0
 public AccountRepository(ERPDATA2Context context)
 {
     this.context = context;
 }
 public SseRepository(ERPDATA2Context context, NotificationEvent notificationEvent)
 {
     this.context       = context;
     _notificationEvent = notificationEvent;
 }