예제 #1
0
 protected void DestroyServices(IAPIEntityService service)
 {
     if (service is IAPIController)
     {
         var apiCon = service as IAPIController;
         apiCon.OnDestroy(this);
     }
 }
예제 #2
0
 protected async Task DestroyServices(IAPIEntityService service)
 {
     if (service is IAPIController)
     {
         var apiCon = service as IAPIController;
         await apiCon.OnDestroy(this);
     }
 }