IDataCorrect.cs 282 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using SAGA.MBI.Model;
  7. namespace SAGA.MBI.ToolsData
  8. {
  9. interface IDataCorrect
  10. {
  11. string ExecuteAll();
  12. string Execute(MFloor floor);
  13. }
  14. }