Example #1
0
 	public ServiceResult<string> Delete(int Id)
 	{
 		LogDatabaseService service = new LogDatabaseService(_container);
 		return service.Delete(Id);
 	}
Example #2
0
 	public ServiceResult<LogDatabase> Retrieve(int Id)
 	{
 		LogDatabaseService service = new LogDatabaseService(_container);
 		return service.Retrieve(Id);
 	}
Example #3
0
 	public ServiceResult<IList<LogDatabase>> GetAll()
 	{
 		LogDatabaseService service = new LogDatabaseService(_container);
 		return service.GetAll();
 	}
Example #4
0
 	public ServiceResult<LogDatabase> Edit(LogDatabase obj)
 	{
 		LogDatabaseService service = new LogDatabaseService(_container);
 		return service.Edit(obj);
 	}