public CustomMenuApi()
 {
     _cms = new CustomMenuService();
 }
Beispiel #2
0
 public CustomMenuApi()
 {
     _system = new SystemService();
     _cms    = new CustomMenuService();
 }
Beispiel #3
0
 public CustomMenuServiceTest()
 {
     _customMenuService = new CustomMenuService(AccountModel);
 }
 public CustomMenuServiceTest()
 {
     _customMenuService = new CustomMenuService(AccountModel);
 }
Beispiel #5
0
 public CustomMenuController(ICustomMenuService cms, ISystemService ss)
 {
     _cms = cms;
     _ss  = ss;
 }