tcc/ASP.NET/Services/ImageService.cs

15 lines
293 B
C#
Raw Permalink Normal View History

2023-11-02 22:14:16 +00:00
namespace TCC.Services
2023-08-16 18:58:01 +00:00
{
public class ImageService
{
public ImageService() { }
2023-08-20 20:21:58 +00:00
public void SaveImage(Stream fileStream)
{
var file = File.Create("image.png");
fileStream.CopyToAsync(file);
file.Close();
}
2023-08-16 18:58:01 +00:00
}
}