Blame view

OS.Spin/OS.Spin.Modle/BusinessLayer/MGateWidth.cs 415 Bytes
8ca6e89d   Tuo Wenbo   20211021
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  using System.Collections.Generic;
  using System.Linq;
  
  namespace OS.Spin.Modle.BusinessLayer
  {
      public class MGateWidth
      {
          private Dictionary<int, int> _gates = new Dictionary<int, int>();
  
          public void SetGateWidthById(int id,int width)
          {
              _gates[id] = width;
          }
  
          public int GetSumWidth()
          {
              return _gates.Values.Sum();
          }
      }
  }