12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using SCC.Interface;
- namespace SCC.Services
- {
-
-
-
- public class CommonServices : ICommon
- {
-
-
-
-
-
- public int GetScore(int level)
- {
- if (level > 10) return 100;
- if (level < 0) return 0;
- return level * 10;
- }
- }
- }
|