Last active
May 13, 2017 17:57
-
-
Save seba47/9329b187a76123b2f61fe74eaf25e41b to your computer and use it in GitHub Desktop.
descccc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Realitee.Interfaces | |
{ | |
public interface IFileStorage | |
{ | |
Task<byte[]> ReadAsBytes(string filename); | |
Task<string> ReadAsString(string filename); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Realitee.Interfaces | |
{ | |
public interface IFileStorage | |
{ | |
Task<byte[]> ReadAsBytes(string filename); | |
Task<string> ReadAsString(string filename); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment