/// <summary>
		/// Initialize a new instance of the <see cref="TownsController"/> class with provided data.
		/// </summary>
		/// <param name="data">The data with the <see cref="TownsController"/> depends to.</param>
		public TownsController(IEventsSystemData data)
            : base(data)
        {
        }
示例#2
0
		public BaseController(IEventsSystemData data)
		{
			this.data = data;
		}
示例#3
0
 public CommentsController(IEventsSystemData data)
     : base(data)
 {
 }
示例#4
0
 public EventsController(IEventsSystemData data, IMappingService mapservices)
     : base(data)
 {
     this.mapservices = mapservices;
 }
 public CommentsController(IEventsSystemData data)
     : base(data)
 {
 }
 /// <summary>
 /// Initialize a new instance of the <see cref="TagsController"/> class with provided data.
 /// </summary>
 /// <param name="data">The data with the <see cref="TagsController"/> depends to.</param>
 public TagsController(IEventsSystemData data)
     : base(data)
 {
 }
		public EventsController(IEventsSystemData data, IMappingService mapservices)
			: base(data)
		{
			this.mapservices = mapservices;
		}
示例#8
0
 public BaseController(IEventsSystemData data)
 {
     this.data = data;
 }
		/// <summary>
		/// Initialize a new instance of the <see cref="CategoriesController"/> class with provided data.
		/// </summary>
		/// <param name="data">The data with the <see cref="CategoriesController"/> depends to.</param>7
		public CategoriesController(IEventsSystemData data)
			: base(data)
		{
		}
 /// <summary>
 /// Initialize a new instance of the <see cref="CategoriesController"/> class with provided data.
 /// </summary>
 /// <param name="data">The data with the <see cref="CategoriesController"/> depends to.</param>7
 public CategoriesController(IEventsSystemData data)
     : base(data)
 {
 }