Automated teller machine emulation.
using Microsoft.Owin;
using Owin;
[assembly: OwinStartupAttribute(typeof(SergeyDrozdovATM.Web.Startup))]
namespace SergeyDrozdovATM.Web
{
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
ConfigureAuth(app);
}
}
}