Select Git revision
Forked from
ACS / Public / Teaching materials / Grundgebiete der Informatik 4 / Grundgebiete der Informatik 4
Source project has a limited visibility.
-
Stefan Lankes authoredStefan Lankes authored
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>())
{
}
}
}