// // Class: ANSWMessageComparer // Current CLR: 4.0.30319.34209 // System: Microsoft Visual Studio 10.0 // Author: dani // Created: 8/30/2015 6:36:43 PM // // Copyright (c) 2015 Informatikbüro Daniel Schick. All rights reserved. using System; using System.Collections.Generic; using bsmd.database; namespace bsmd.ReportGenerator { public class ANSWMessageComparer : IComparer { public int Compare(Message x, Message y) { return Message.ANSWSortList.IndexOf(x.MessageNotificationClass).CompareTo(Message.ANSWSortList.IndexOf(y.MessageNotificationClass)); } } }