namespace Bit.Core.Abstractions { public interface ISynchronousStorageService { T Get(string key); void Save(string key, T obj); void Remove(string key); } }