public SendMobilePushRepository(NotificationEvent notificationEvent, ERPDATA2Context context, IConfiguration configuration)
 {
     _notificationEvent = notificationEvent;
     this.context       = context;
     this.utils         = new Utils();
     Configuration      = configuration;
 }
Exemplo n.º 2
0
 public CargoRepository(ERPDATA2Context context)
 {
     this.context = context;
 }
Exemplo n.º 3
0
 public AuthRepository(ERPDATA2Context context)
 {
     this.context = context;
 }
 public VersionRepository(ERPDATA2Context context)
 {
     this.context = context;
 }
Exemplo n.º 5
0
 public ClientRepository(ERPDATA2Context context)
 {
     this.context = context;
 }
Exemplo n.º 6
0
 public UserPermission(ERPDATA2Context context)
 {
     this.context = context;
 }
Exemplo n.º 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();
        }
Exemplo n.º 8
0
 public AccountRepository(ERPDATA2Context context)
 {
     this.context = context;
 }
Exemplo n.º 9
0
 public SseRepository(ERPDATA2Context context, NotificationEvent notificationEvent)
 {
     this.context       = context;
     _notificationEvent = notificationEvent;
 }