Ejemplo n.º 1
0
 public int AddItem(WhiteListObject item) => CoreManager.GetService <IDatabase>().AddItem(item);
Ejemplo n.º 2
0
 public List <WhiteListObject> GetAll() => CoreManager.GetService <IDatabase>().GetAll <WhiteListObject>();
Ejemplo n.º 3
0
 public bool IsContained(Expression <Func <WhiteListObject, bool> > expression) => CoreManager.GetService <IDatabase>().Contains(expression);
Ejemplo n.º 4
0
 public WhiteListObject GetItem(Expression <Func <WhiteListObject, bool> > expression) => CoreManager.GetService <IDatabase>().GetItem(expression);
Ejemplo n.º 5
0
 public bool UpdateItem(NetworkDeviceObject item) => CoreManager.GetService <IDatabase>().UpdateItem(null, item);
Ejemplo n.º 6
0
 public List <NetworkDeviceObject> GetAll() => CoreManager.GetService <IDatabase>().GetAll <NetworkDeviceObject>();
Ejemplo n.º 7
0
 public int AddItem(NetworkDeviceObject item) => CoreManager.GetService <IDatabase>().AddItem(item);
Ejemplo n.º 8
0
 public NetworkDeviceObject GetItem(Expression <Func <NetworkDeviceObject, bool> > expression) => CoreManager.GetService <IDatabase>().GetItem(expression);
Ejemplo n.º 9
0
 public bool IsContained(Expression <Func <NetworkDeviceObject, bool> > expression) => CoreManager.GetService <IDatabase>().Contains(expression);