コード例 #1
0
 public async Task OnUpdate(GuoGuoCommunityContext db, StreetOffice streetOffice, CancellationToken token = default)//触发事件的方法
        
 {
     await Task.Run(() => StreetOfficeEvent(db, streetOffice, token));
 }
コード例 #2
0
 public async Task OnUpdate(GuoGuoCommunityContext db, BuildingUnit buildingUnit, CancellationToken token = default)//触发事件的方法
        
 {
     await Task.Run(() => BuildingUnitEvent(db, buildingUnit, token));
 }
コード例 #3
0
 public async Task OnUpdate(GuoGuoCommunityContext db, ComplaintType complaintType, CancellationToken token = default)
 {
     await Task.Run(() => ComplaintTypeEvent(db, complaintType, token));
 }
コード例 #4
0
 public async Task OnUpdate(GuoGuoCommunityContext db, SmallDistrict smallDistrict, CancellationToken token = default)//触发事件的方法
        
 {
     await Task.Run(() => SmallDistrictEvent(db, smallDistrict, token));
 }
コード例 #5
0
 public async Task OnUpdate(GuoGuoCommunityContext db, VipOwner vipOwner, CancellationToken token = default)//触发事件的方法
        
 {
     await Task.Run(() => VipOwnerEvent(db, vipOwner, token));
 }
コード例 #6
0
 public async Task OnUpdate(GuoGuoCommunityContext db, VipOwnerStructure vipOwnerStructure, CancellationToken token = default)
        
 {
     await Task.Run(() => VipOwnerStructureEvent(db, vipOwnerStructure, token));
 }
コード例 #7
0
 public async Task OnUpdate(GuoGuoCommunityContext db, Community community, CancellationToken token = default)//触发事件的方法
        
 {
     await Task.Run(() => CommunityEvent(db, community, token));
 }