Ejemplo n.º 1
0
        public string CreateCompany(Company newCompany)
        {
            if (socketService == null)
            {
                socketService = new SocketService();
            }
            string id = socketService.AddCompany(newCompany);

            return(id);
        }