Esempio n. 1
0
 public Service(OficiuRepository oficiuRepository, ParticipantRepository participantRepository, ProbaRepository probaRepository, InscriereRepository inscriereRepository)
 {
     this.oficiuRepository      = oficiuRepository;
     this.participantRepository = participantRepository;
     this.probaRepository       = probaRepository;
     this.inscriereRepository   = inscriereRepository;
 }
Esempio n. 2
0
        static void Main(string[] args)
        {
            BinaryServerFormatterSinkProvider serverProv = new BinaryServerFormatterSinkProvider();

            serverProv.TypeFilterLevel = System.Runtime.Serialization.Formatters.TypeFilterLevel.Full;
            BinaryClientFormatterSinkProvider clientProv = new BinaryClientFormatterSinkProvider();
            IDictionary props = new Hashtable();

            props["port"] = 55555;
            TcpChannel channel = new TcpChannel(props, clientProv, serverProv);

            ChannelServices.RegisterChannel(channel, false);

            IDictionary <string, string> pr = new SortedList <string, string>();

            pr.Add("ConnectionString", "URI=file:ConcursInot.db");
            OficiuRepository      oficiu      = new OficiuRepository(pr);
            ParticipantRepository participant = new ParticipantRepository(pr);
            ProbaRepository       proba       = new ProbaRepository(pr);
            InscriereRepository   inscriere   = new InscriereRepository(pr);
            Service service = new Service(oficiu, participant, proba, inscriere);

            var server = new ServerImplementation(service);

            RemotingServices.Marshal(server, "Server");

            //RemotingConfiguration.RegisterWellKnownServiceType(typeof(ServerImplementation), "Server",
            //    WellKnownObjectMode.Singleton);

            Console.WriteLine("Server started ...");
            Console.WriteLine("Press <enter> to exit...");
            Console.ReadLine();
        }
Esempio n. 3
0
 public Service(AngajatRepository angajatRepository, CursaRepository cursaRepository, EchipaRepository echipaRepository, InscriereRepository inscriereRepository, ParticipantRepository participantRepository)
 {
     this.angajati     = angajatRepository;
     this.curse        = cursaRepository;
     this.echipe       = echipaRepository;
     this.inscrieri    = inscriereRepository;
     this.participanti = participantRepository;
 }