Example #1
0
        // private readonly Functions func;

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