private void GetHitCounter() { HitCounterBSO hitcounterBSO = new HitCounterBSO(); long hitcounter = hitcounterBSO.GetHitCounter(); hitcounterBSO.UpdateHitCounter(hitcounter + 1); }
public long GetHitCounter() { HitCounterBSO hitcounterBSO = new HitCounterBSO(); return(hitcounterBSO.GetHitCounter()); }
public void UpdateHitCounter(long hitcouter) { HitCounterBSO hitcounterBSO = new HitCounterBSO(); hitcounterBSO.UpdateHitCounter(hitcouter); }