Select Git revision
-
L. Ellenbeck authored
# Conflicts: # src/Migrations.Tests/Properties/AssemblyInfo.cs # src/Migrations/Migrations.csproj # src/Migrations/Properties/AssemblyInfo.cs # src/Migrator/Properties/AssemblyInfo.cs
L. Ellenbeck authored# Conflicts: # src/Migrations.Tests/Properties/AssemblyInfo.cs # src/Migrations/Migrations.csproj # src/Migrations/Properties/AssemblyInfo.cs # src/Migrator/Properties/AssemblyInfo.cs
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ContactChangeEventArgs.cs 607 B
using Coscine.Configuration;
using Coscine.Database.ReturnObjects;
namespace Coscine.Action.EventArgs
{
public class ContactChangeEventArgs : ActionEventArgs
{
public IConfiguration Configuration { get; set; }
public ContactChangeObject ContactInformation { get; set; }
public ContactChangeEventArgs(IConfiguration configuration, object[] args) : base(args)
{
Configuration = configuration;
}
public ContactChangeEventArgs(IConfiguration configuration) : this(configuration, System.Array.Empty<object>())
{
}
}
}