IAppConfigSetter.cs 324 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WebAPIBase.NetCore.BusinessCore
  7. {
  8. public interface IAppConfigSetter
  9. {
  10. string GetDBConnectionString();
  11. string GetEntityDefinePath();
  12. string GetDBType();
  13. }
  14. }