using System.Threading.Tasks;
namespace TINK.ViewModel.Bikes.Bike.BC.RequestHandler
{
public interface IRequestHandler : IRequestHandlerBase
{
///
/// Performs the copri action to be executed when user presses the copri button managed by request handler.
///
/// New handler object if action suceesed, same handler otherwise.
Task HandleRequest();
}
}