1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Request.App.OftenContact;
- using GxPress.Result;
- using GxPress.Result.App.OftenContact;
- namespace GxPress.Service.Interface.Storage
- {
- public interface IStorage
- {
-
-
-
-
-
-
- void Save(string path, byte[] bytes);
-
-
-
-
-
-
-
- PathResult SaveFile(string path, string fileName, byte[] bytes);
-
-
-
-
-
-
- PathResult GetSavePath(string path,string fileName);
-
-
-
-
-
-
- PathResult SaveQRCodeFile(string path, string content);
-
-
-
-
-
- bool Delete(string path);
-
-
-
-
-
- bool Exists(string path);
-
-
-
-
-
- byte[] Read(string path);
- }
-
- }
|