Statistiques
| Branche: | Révision:

teotestbluetooth / TestXamConnections / TestXamConnections / Device / RFID / LecteurRFIDFournisseur.cs @ 340558f2

Historique | Voir | Annoter | Télécharger (720 octets)

1
using System;
2
using System.Collections.Generic;
3
using System.Text;
4
using TestXamConnections.Connection;
5
using TestXamConnections.Device.RFID.Agrident;
6

    
7
namespace TestXamConnections.Device.RFID
8
{
9
    public enum AppareilRFID
10
    {
11
        AgridentInterne,
12
        AgridentBT
13
    }
14

    
15
    public static class LecteurRFIDFournisseur
16
    {
17
        public static ILecteurRFID GetLecteurRFID(AppareilRFID d, ConnexionType ct, InfoAppareil deviceI)
18
        {
19
            return d switch
20
            {
21
                AppareilRFID.AgridentBT => throw new NotImplementedException(),
22
                AppareilRFID.AgridentInterne => new AgridentLecteurInterne(deviceI),
23
                _ => null,
24
            };
25
        }
26
    }
27
}