Exemplo n.º 1
0
        // private readonly Functions func;

        public Sort(MessageLogWebApplicationContext context)
        {
            _context = context;
            //func = new Functions(context);
        }
Exemplo n.º 2
0
 public ServerController(MessageLogWebApplicationContext context)
 {
     _context = context;
     func     = new Functions(context);
 }
Exemplo n.º 3
0
 public Demo(MessageLogWebApplicationContext context)
 {
     _context = context;
     func     = new Functions(context);
 }
Exemplo n.º 4
0
 public HomeController(MessageLogWebApplicationContext context)
 {
     _context = context;
     func     = new Functions(context);
     demo     = new Demo(context);
 }
Exemplo n.º 5
0
 public MessageController(MessageLogWebApplicationContext context)
 {
     _context = context;
     func     = new Functions(context);
     sort     = new Sort(context);
 }
Exemplo n.º 6
0
 public Functions(MessageLogWebApplicationContext context)
 {
     _context = context;
     sort     = new Sort(context);
 }