You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuTmpFsFilesCrudDataAccess.cs 407B

12345678910111213141516171819
  1. using Luticate2.Utils.DataAccess;
  2. namespace TestUtils.DataAccess
  3. {
  4. public class LuTmpFsFilesCrudDataAccess : LuFsFilesCrudDataAccess
  5. {
  6. private readonly string _basePath;
  7. public LuTmpFsFilesCrudDataAccess(string basePath)
  8. {
  9. _basePath = basePath;
  10. }
  11. public override string GetBasePath()
  12. {
  13. return _basePath;
  14. }
  15. }
  16. }